diff --git a/pyste/tests/test_all.py b/pyste/tests/test_all.py index e296d9bf..a3eeed17 100644 --- a/pyste/tests/test_all.py +++ b/pyste/tests/test_all.py @@ -16,7 +16,7 @@ import time if sys.platform == 'win32': includes = '-ID:/programming/libraries/boost-cvs/boost -ID:/Bin/Python/include' - build_pyste_cmd = 'python ../src/Pyste/pyste.py --cache-dir=cache %s ' % includes + build_pyste_cmd = 'python ../src/Pyste/pyste.py --pyste-ns=pyste --cache-dir=cache %s ' % includes compile_single_cmd = 'cl /nologo /GR /GX -c %s -I. ' % includes link_single_cmd = 'link /nologo /DLL '\ '/libpath:D:/programming/libraries/boost-cvs/lib /libpath:D:/Bin/Python/libs '\ @@ -29,7 +29,7 @@ if sys.platform == 'win32': elif sys.platform == 'linux2': build_pyste_cmd = 'python ../src/Pyste/pyste.py -I. ' - compile_single_cmd = 'g++ -shared -c -I. -I/usr/include/python2.2 ' + compile_single_cmd = 'g++ -shared -c -I. -I/usr/include/python2.4 ' link_single_cmd = 'g++ -shared -o _%s.so -lboost_python ' obj_ext = 'o'