fix return code for python run tests

This commit is contained in:
Dane Springmeyer 2013-11-22 12:07:07 -08:00
parent 38a059298b
commit c3d31993b8

View file

@ -49,10 +49,10 @@ test-local:
make test
test-visual:
$(shell source ./localize.sh && python tests/visual_tests/test.py -q)
bash -c "source ./localize.sh && python tests/visual_tests/test.py -q"
test-python:
$(shell source ./localize.sh && python tests/run_tests.py -q)
bash -c "source ./localize.sh && python tests/run_tests.py -q"
test-cpp:
./tests/cpp_tests/run
@ -60,7 +60,7 @@ test-cpp:
check: test-local
bench:
LOCALIZE=true ./benchmark/run
./benchmark/run
demo:
cd demo/c++; ./rundemo `mapnik-config --prefix`