X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3a3ad7b4828808aeaddac16924ff03c45dd73fca..2de95fd8b3b3b3edb7e11074295f1b90d6427b36:/testsuite/gras/run_tests diff --git a/testsuite/gras/run_tests b/testsuite/gras/run_tests deleted file mode 100755 index 89c549eb6c..0000000000 --- a/testsuite/gras/run_tests +++ /dev/null @@ -1,37 +0,0 @@ -#! /bin/bash -failed_nb=0 -success_nb=0 -tests_nb=0 -for test in log_usage \ - dynar_int dynar_double dynar_string \ - dict_usage dict_crash \ - config_usage \ - \ - gs_example -do - tests_nb=`expr $tests_nb + 1` - echo "#### Test $test" - ./$test --gras-log="root.thres=info" 2>&1 - if [ $? != 0 ] ; then - echo "## failed. Rerun $test with full details." - ./$test --gras-log="root.thres=debug" 2>&1 - failed_nb=`expr $failed_nb + 1` - failed="$failed $test" - else - echo "## Success" - success_nb=`expr $success_nb + 1` - success="$success $test" - fi -done -failed=`echo $failed|sed 's|^ ||'` -success=`echo $success|sed 's|^ ||'` -echo -echo "#### Summary" -echo "$success_nb tests of $tests_nb successfull ($success)" -if [ $failed_nb != 0 ] ; then - echo "$failed_nb tests of $tests_nb failed ($failed)" - echo "Rerun the tests using the following command: script -c 'make test'" - echo " and send the file typescript it will produce to martin.quinson@ens-lyon.fr" - echo " along with a short description of the target platform (arch, OS, distrib, compiler)." -fi -exit $failed_nb