re PR go/48017 (Network tests should fail gracefully without network connectivity)
authorIan Lance Taylor <ian@gcc.gnu.org>
Wed, 9 Mar 2011 05:57:10 +0000 (05:57 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 9 Mar 2011 05:57:10 +0000 (05:57 +0000)
PR go/48017
Only run net tests if GCCGO_RUN_ALL_TESTS is set in environment.

From-SVN: r170809

libgo/Makefile.am
libgo/Makefile.in

index ca3de1d1633a1fbd97aadccf467edc4c5252728e..407868779822d8eb0eab8387f2ba1a2de2b7a460 100644 (file)
@@ -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 \
index edc40b4be2a694b63b287538fc0b030bf300f7e9..46821bad8ad2a88e3f10847a406f0e60fbdacb13 100644 (file)
@@ -1818,13 +1818,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 \
@@ -1840,7 +1840,7 @@ TEST_PACKAGES = \
        strconv/check \
        strings/check \
        sync/check \
-       syslog/check \
+       $(if $(GCCGO_RUN_ALL_TESTS),syslog/check) \
        tabwriter/check \
        template/check \
        time/check \