run all cpp tests available
This commit is contained in:
parent
9c3d3ab285
commit
8e708c89fd
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -18,8 +18,13 @@ uninstall:
|
|||
python scons/scons.py uninstall
|
||||
|
||||
test:
|
||||
@echo "*** Running visual tests…"
|
||||
@python tests/visual_tests/test.py -q
|
||||
@tests/cpp_tests/*-bin
|
||||
@echo "*** Running C++ tests..."
|
||||
@for FILE in tests/cpp_tests/*-bin; do \
|
||||
$${FILE}; \
|
||||
done
|
||||
@echo "*** Running python tests..."
|
||||
@python tests/run_tests.py -q
|
||||
|
||||
pep8:
|
||||
|
|
Loading…
Reference in a new issue