diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-09 05:57:10 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-09 05:57:10 +0000 |
commit | 8897c836a89381c814407e5d2cc70b813ce70f09 (patch) | |
tree | 98f1fddee2b01a2ddb3d91b32c7087a9c8da0230 /libgo/Makefile.am | |
parent | a60133507681bd0f1e1fcff7035e7bf34c288b22 (diff) | |
download | gcc-8897c836a89381c814407e5d2cc70b813ce70f09.zip gcc-8897c836a89381c814407e5d2cc70b813ce70f09.tar.gz gcc-8897c836a89381c814407e5d2cc70b813ce70f09.tar.bz2 |
re PR go/48017 (Network tests should fail gracefully without network connectivity)
PR go/48017
Only run net tests if GCCGO_RUN_ALL_TESTS is set in environment.
From-SVN: r170809
Diffstat (limited to 'libgo/Makefile.am')
-rw-r--r-- | libgo/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index ca3de1d..4078687 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -2952,13 +2952,13 @@ TEST_PACKAGES = \ fmt/check \ gob/check \ html/check \ - http/check \ + $(if $(GCCGO_RUN_ALL_TESTS),http/check) \ io/check \ json/check \ log/check \ math/check \ mime/check \ - net/check \ + $(if $(GCCGO_RUN_ALL_TESTS),net/check) \ netchan/check \ os/check \ patch/check \ @@ -2974,7 +2974,7 @@ TEST_PACKAGES = \ strconv/check \ strings/check \ sync/check \ - syslog/check \ + $(if $(GCCGO_RUN_ALL_TESTS),syslog/check) \ tabwriter/check \ template/check \ time/check \ |