From: mquinson Date: Mon, 2 Jul 2007 14:21:01 +0000 (+0000) Subject: Specify that we want the simulation tests before the real ones (since they are faster... X-Git-Tag: v3.3~1721 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/09cec4c2b769c567b55762f381d4caae5f017fd7?hp=4b4f3109c8339cb70f07ae300dc3f792106936a5 Specify that we want the simulation tests before the real ones (since they are faster), and that test_sg_32 test_SG_64 test_rl are PHONY targets git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3639 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/examples/gras/tests.mk b/examples/gras/tests.mk index 6e79e94ac1..9a9bbc4500 100644 --- a/examples/gras/tests.mk +++ b/examples/gras/tests.mk @@ -12,18 +12,21 @@ # and pick the right one here. if GRAS_ARCH_32_BITS - TESTS= test_rl test_sg_32 -test-sg: + TESTS= test_sg_32 test_rl +test-sg: $(TESTS_ENVIRONMENT) test_sg_32 else - TESTS= test_rl test_sg_64 -test-sg: + TESTS= test_sg_64 test_rl +test-sg: $(TESTS_ENVIRONMENT) test_sg_64 endif -test-rl: +test-rl: force $(TESTS_ENVIRONMENT) test_rl TESTS_ENVIRONMENT=srcdir=$(srcdir) EXEEXT=$(EXEEXT) @top_builddir@/tools/tesh/tesh +force: -EXTRA_DIST+=test_rl test_sg_32 test_sg_64 \ No newline at end of file +EXTRA_DIST+=test_rl test_sg_32 test_sg_64 + +.PHONY: test_sg_32 test_SG_64 test_rl