From: mquinson Date: Sun, 13 Feb 2005 23:01:42 +0000 (+0000) Subject: Move the timer test to examples, add the infrastructure so that it gets run both... X-Git-Tag: v3.3~4343 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/feb0e932349c35037f51a93f3185c3d5d21357c7?hp=0d379536a99d65399ab2a1b212ecd5a2718945dc Move the timer test to examples, add the infrastructure so that it gets run both in RL and SG, some cleanup in configure.ac git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1008 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/configure.ac b/configure.ac index 5467499118..bec52c7919 100644 --- a/configure.ac +++ b/configure.ac @@ -128,6 +128,7 @@ AC_CONFIG_FILES([ examples/msg/Makefile examples/msg/run_msg_test examples/gras/Makefile examples/gras/ping/Makefile examples/gras/ping/test_sg examples/gras/ping/test_rl + examples/gras/timer/Makefile examples/gras/timer/test_sg examples/gras/timer/test_rl doc/Makefile doc/Doxyfile.main doc/Doxyfile.API doc/Doxyfile.Examples tools/compile-remote-worker tools/Makefile @@ -137,18 +138,21 @@ AC_CONFIG_FILES([ testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage ],[ - test -e testsuite/run_tests && chmod +x testsuite/run_tests; - test -e testsuite/gras/trp_tcp_usage && chmod +x testsuite/gras/trp_tcp_usage; - test -e testsuite/gras/trp_file_usage&& chmod +x testsuite/gras/trp_file_usage; - test -e tools/compile-remote-worker && chmod +x tools/compile-remote-worker; - test -e examples/msg/run_msg_test && chmod +x examples/msg/run_msg_test; - test -e examples/gras/ping/test_sg && chmod +x examples/gras/ping/test_sg; - test -e examples/gras/ping/test_rl && chmod +x examples/gras/ping/test_rl; -# test -e examples/gras/bandwidth/test_sg && chmod +x examples/gras/bandwidth/test_sg; - test -e examples/gras/pastry/test_sg && chmod +x examples/gras/pastry/test_sg; - chmod +x $srcdir/tools/gras-check-arch; + for file in \ + testsuite/run_tests \ + testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage \ + tools/compile-remote-worker \ + examples/msg/run_msg_test \ + examples/gras/ping/test_sg examples/gras/ping/test_rl \ + examples/gras/timer/test_sg examples/gras/timer/test_rl \ + ; do \ + test -e $file && chmod +x $file; \ + done + chmod +x $srcdir/tools/gras-check-arch; ]) +# examples/gras/pastry/test_sg +# examples/gras/bandwidth/test_sg