X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dfef07e929a51f264050985b6e8f5f302103dab2..bae41a261053ac0db117089bbaa97b070db7408c:/teshsuite/Makefile.in diff --git a/teshsuite/Makefile.in b/teshsuite/Makefile.in index 6d489276f8..7ee04875d1 100644 --- a/teshsuite/Makefile.in +++ b/teshsuite/Makefile.in @@ -538,6 +538,7 @@ distclean-tags: check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ + faillist=""; xpasslist=""; xfaillist=""; skiplist=""; \ srcdir=$(srcdir); export srcdir; \ list=' $(TESTS) '; \ if test -n "$$list"; then \ @@ -551,6 +552,7 @@ check-TESTS: $(TESTS) *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ + xpasslist="$$xpasslist $$tst"; \ echo "XPASS: $$tst"; \ ;; \ *) \ @@ -562,15 +564,18 @@ check-TESTS: $(TESTS) case " $(XFAIL_TESTS) " in \ *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ + xfaillist="$$xfaillist $$tst"; \ echo "XFAIL: $$tst"; \ ;; \ *) \ failed=`expr $$failed + 1`; \ + faillist="$$faillist $$tst"; \ echo "FAIL: $$tst"; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ + skiplist="$$skiplist $$tst"; \ echo "SKIP: $$tst"; \ fi; \ done; \ @@ -606,6 +611,30 @@ check-TESTS: $(TESTS) test -z "$$skipped" || echo "$$skipped"; \ test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ + if test -n "$$faillist" ; then \ + echo "Failed tests:";\ + for tst in $$faillist ; do \ + echo " "$$tst;\ + done;\ + fi;\ + if test -n "$$xpasslist" ; then \ + echo "Unexpectedly passed tests:";\ + for tst in $$xpasslist ; do \ + echo " "$$tst;\ + done;\ + fi;\ + if test -n "$$xfaillist" ; then \ + echo "Expected failures:";\ + for tst in $$xfaillist ; do \ + echo " "$$tst;\ + done;\ + fi;\ + if test -n "$$skiplist" ; then \ + echo "Skipped tests:";\ + for tst in $$skiplist ; do \ + echo " "$$tst;\ + done;\ + fi;\ test "$$failed" -eq 0; \ else :; fi @@ -757,7 +786,7 @@ uninstall-am: ############################################# gras/datadesc/datadesc_structs.c: gras/datadesc/mk_datadesc_structs.pl - cd gras/datadesc ; perl ../$(top_srcdir)/teshsuite/gras/datadesc/mk_datadesc_structs.pl > datadesc_structs.c + perl $(top_srcdir)/teshsuite/gras/datadesc/mk_datadesc_structs.pl > $@ ##########################################