add test entry

This commit is contained in:
lperron@google.com
2011-12-14 14:14:47 +00:00
parent 4a623cea13
commit ef1657a601
3 changed files with 13 additions and 0 deletions

View File

@@ -33,5 +33,8 @@ include makefiles/Makefile.cpp.mk
include makefiles/Makefile.python.mk
include makefiles/Makefile.java.mk
# Include test
include makefiles/Makefile.test.$(SYSTEM)
# Finally include user makefile if it exists
-include Makefile.user

View File

@@ -0,0 +1,10 @@
test: all run_RabbitsPheasants run_FlowExample run_LinearProgramming run_IntegerProgramming run_Knapsack
./golomb --size=5
PYTHONPATH=$(TOP) python$(PYTHONVERSION) python/hidato_table.py
./flow_api
PYTHONPATH=$(TOP) python$(PYTHONVERSION) python/pyflow_example.py
PYTHONPATH=$(TOP) python$(PYTHONVERSION) python/knapsack.py
./linear_programming
./integer_programming
PYTHONPATH=$(TOP) python$(PYTHONVERSION) python/linear_programming.py
PYTHONPATH=$(TOP) python$(PYTHONVERSION) python/integer_programming.py

View File