From ef1657a6014be3fd2f77bb297c68f72dfd9ad2d7 Mon Sep 17 00:00:00 2001 From: "lperron@google.com" Date: Wed, 14 Dec 2011 14:14:47 +0000 Subject: [PATCH] add test entry --- Makefile | 3 +++ makefiles/Makefile.test.unix | 10 ++++++++++ makefiles/Makefile.test.win | 0 3 files changed, 13 insertions(+) create mode 100644 makefiles/Makefile.test.unix create mode 100644 makefiles/Makefile.test.win diff --git a/Makefile b/Makefile index 9a3b0bed44..e510556430 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/makefiles/Makefile.test.unix b/makefiles/Makefile.test.unix new file mode 100644 index 0000000000..632a23e7a6 --- /dev/null +++ b/makefiles/Makefile.test.unix @@ -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 diff --git a/makefiles/Makefile.test.win b/makefiles/Makefile.test.win new file mode 100644 index 0000000000..e69de29bb2