X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e1e3c44c292ce4485d1b4810f040a8671d4f36bb..7ff57cdfff5d7b558c581e588fbf9c70a4e39e35:/examples/java/comm_time/Makefile.in diff --git a/examples/java/comm_time/Makefile.in b/examples/java/comm_time/Makefile.in index c38d1f5856..45e19ce3d0 100644 --- a/examples/java/comm_time/Makefile.in +++ b/examples/java/comm_time/Makefile.in @@ -197,13 +197,13 @@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -EXTRA_DIST = comm_time_deployment.xml comm_time_platform.xml surfxml.dtd +EXTRA_DIST = comm_time_deployment.xml comm_time_platform.xml # Declare sources: noinst_JAVA = Master.java Slave.java CommTimeTest.java CommTimeTask.java TESTS = CommTimeTest.class JAVAROOT = . -AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar +AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar:. ########################## # What to do on make check @@ -277,7 +277,6 @@ CTAGS: 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 \ @@ -291,7 +290,6 @@ check-TESTS: $(TESTS) *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ - xpasslist="$$xpasslist $$tst"; \ echo "XPASS: $$tst"; \ ;; \ *) \ @@ -303,18 +301,15 @@ 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; \ @@ -350,30 +345,6 @@ 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