From 719db78a976b1fbbad9d6aeb3001ae40b1e14c26 Mon Sep 17 00:00:00 2001 From: mquinson Date: Wed, 26 Sep 2007 15:38:28 +0000 Subject: [PATCH] During VPATH builds, this directory may not exist git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4742 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- teshsuite/Makefile.am | 2 +- teshsuite/Makefile.in | 31 +------------------------------ 2 files changed, 2 insertions(+), 31 deletions(-) diff --git a/teshsuite/Makefile.am b/teshsuite/Makefile.am index ab95175656..05f371eabf 100644 --- a/teshsuite/Makefile.am +++ b/teshsuite/Makefile.am @@ -78,7 +78,7 @@ gras_msg_handle_msg_handle_client_LDADD= $(LDADD_RL) gras_msg_handle_msg_handle_server_LDADD= $(LDADD_RL) gras/msg_handle/_msg_handle_simulator.c gras/msg_handle/_msg_handle_client.c gras/msg_handle/_msg_handle_server.c : gras/msg_handle/msg_handle.c gras/msg_handle/msg_handle.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ - cd gras/msg_handle; ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle $(srcdir)/msg_handle.xml + mkdir -p gras/msg_handle; cd gras/msg_handle; ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle $(srcdir)/msg_handle.xml if GRAS_ARCH_32_BITS TESTS += gras/msg_handle/test_rl gras/msg_handle/test_sg_32 diff --git a/teshsuite/Makefile.in b/teshsuite/Makefile.in index 7ee04875d1..27856ff667 100644 --- a/teshsuite/Makefile.in +++ b/teshsuite/Makefile.in @@ -538,7 +538,6 @@ 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 \ @@ -552,7 +551,6 @@ check-TESTS: $(TESTS) *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ - xpasslist="$$xpasslist $$tst"; \ echo "XPASS: $$tst"; \ ;; \ *) \ @@ -564,18 +562,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; \ @@ -611,30 +606,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 @@ -791,7 +762,7 @@ gras/datadesc/datadesc_structs.c: gras/datadesc/mk_datadesc_structs.pl ########################################## gras/msg_handle/_msg_handle_simulator.c gras/msg_handle/_msg_handle_client.c gras/msg_handle/_msg_handle_server.c : gras/msg_handle/msg_handle.c gras/msg_handle/msg_handle.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ - cd gras/msg_handle; ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle $(srcdir)/msg_handle.xml + mkdir -p gras/msg_handle; cd gras/msg_handle; ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle $(srcdir)/msg_handle.xml dist-files: @for n in $(DISTFILES) ; do echo $(SRCFILE)$$n; done -- 2.20.1