X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e1e3c44c292ce4485d1b4810f040a8671d4f36bb..7ff57cdfff5d7b558c581e588fbf9c70a4e39e35:/examples/java/suspend/Makefile.in diff --git a/examples/java/suspend/Makefile.in b/examples/java/suspend/Makefile.in index 54a11e7d74..85aa48d6e6 100644 --- a/examples/java/suspend/Makefile.in +++ b/examples/java/suspend/Makefile.in @@ -197,7 +197,7 @@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -EXTRA_DIST = suspend_deployment.xml suspend_platform.xml surfxml.dtd +EXTRA_DIST = suspend_deployment.xml suspend_platform.xml # Declare sources: noinst_JAVA = DreamMaster.java LazyGuy.java SuspendTest.java @@ -205,7 +205,7 @@ noinst_JAVA = DreamMaster.java LazyGuy.java SuspendTest.java # Declare test class TESTS = SuspendTest.class JAVAROOT = . -AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar +AM_JAVACFLAGS = -classpath $(top_srcdir)/src/simgrid.jar:. ########################## # What to do on make check @@ -279,7 +279,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 \ @@ -293,7 +292,6 @@ check-TESTS: $(TESTS) *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ - xpasslist="$$xpasslist $$tst"; \ echo "XPASS: $$tst"; \ ;; \ *) \ @@ -305,18 +303,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; \ @@ -352,30 +347,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