From: Philippe M. <pma...@ib...> - 2013-10-03 12:28:57
|
Le 03/10/13 13:14, Roman Simakov a écrit : > Hello! > > I'm trying to run fbtest on my Ubuntu 13.04 x86_64. I have some > problems and I rely on your help. > be sure you have python-setuptools sudo apt-get install python-setuptools the automated build box (http://ci.ibphoenix.fr) do it mostly like that : # co python driver for firebird svn co svn://svn.code.sf.net/p/firebird/code/python/fdb/trunk fdb # install pushd fdb sudo python setup.py install popd # co fbtest svn://svn.code.sf.net/p/firebird/code/qa/fbtest/trunk qa # install tbtest pushd qa sudo python setup.py install # we need this because setup.py is not correct sudo cp -f fbtest.py /usr/lib/python2.7/dist-packages/fbtest.py # popd # co fbt-repository svn co svn://svn.code.sf.net/p/firebird/code/qa/fbt-repository/trunk fbt-repository pushd fbt-repository sudo chmod 666 ./fdb/*.fdb fbt_run ... |