diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-09 23:19:33 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-09 23:19:33 +0000 |
commit | 447536dc7ac7fe7f3884230e3b74d81221fb5cc2 (patch) | |
tree | add5a60f6c809bfccb93c262d12f877c6f617a6f /libgo | |
parent | 2262d649b3d54b57b7419e6f59351f244f23b81d (diff) | |
download | gcc-447536dc7ac7fe7f3884230e3b74d81221fb5cc2.tar.gz |
PR go/56017
libgo testsuite: If using DejaGNU, don't frob the log file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195927 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/Makefile.am | 5 | ||||
-rw-r--r-- | libgo/Makefile.in | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 4ba3145daab..77ab95afdcb 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -3848,7 +3848,10 @@ check-head: @echo >> libgo.head check-tail: check-recursive check-multi - @lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \ + @if test "$(USE_DEJAGNU)" = "yes"; then \ + exit 0; \ + fi; \ + lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \ for dir in . $(MULTIDIRS); do \ mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \ mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \ diff --git a/libgo/Makefile.in b/libgo/Makefile.in index 1376d566d6d..15f027f15e7 100644 --- a/libgo/Makefile.in +++ b/libgo/Makefile.in @@ -6142,7 +6142,10 @@ check-head: @echo >> libgo.head check-tail: check-recursive check-multi - @lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \ + @if test "$(USE_DEJAGNU)" = "yes"; then \ + exit 0; \ + fi; \ + lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \ for dir in . $(MULTIDIRS); do \ mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \ mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \ |