Commit 8897c836 by Ian Lance Taylor

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
parent a6013350
...@@ -2952,13 +2952,13 @@ TEST_PACKAGES = \ ...@@ -2952,13 +2952,13 @@ TEST_PACKAGES = \
fmt/check \ fmt/check \
gob/check \ gob/check \
html/check \ html/check \
http/check \ $(if $(GCCGO_RUN_ALL_TESTS),http/check) \
io/check \ io/check \
json/check \ json/check \
log/check \ log/check \
math/check \ math/check \
mime/check \ mime/check \
net/check \ $(if $(GCCGO_RUN_ALL_TESTS),net/check) \
netchan/check \ netchan/check \
os/check \ os/check \
patch/check \ patch/check \
...@@ -2974,7 +2974,7 @@ TEST_PACKAGES = \ ...@@ -2974,7 +2974,7 @@ TEST_PACKAGES = \
strconv/check \ strconv/check \
strings/check \ strings/check \
sync/check \ sync/check \
syslog/check \ $(if $(GCCGO_RUN_ALL_TESTS),syslog/check) \
tabwriter/check \ tabwriter/check \
template/check \ template/check \
time/check \ time/check \
......
...@@ -1818,13 +1818,13 @@ TEST_PACKAGES = \ ...@@ -1818,13 +1818,13 @@ TEST_PACKAGES = \
fmt/check \ fmt/check \
gob/check \ gob/check \
html/check \ html/check \
http/check \ $(if $(GCCGO_RUN_ALL_TESTS),http/check) \
io/check \ io/check \
json/check \ json/check \
log/check \ log/check \
math/check \ math/check \
mime/check \ mime/check \
net/check \ $(if $(GCCGO_RUN_ALL_TESTS),net/check) \
netchan/check \ netchan/check \
os/check \ os/check \
patch/check \ patch/check \
...@@ -1840,7 +1840,7 @@ TEST_PACKAGES = \ ...@@ -1840,7 +1840,7 @@ TEST_PACKAGES = \
strconv/check \ strconv/check \
strings/check \ strings/check \
sync/check \ sync/check \
syslog/check \ $(if $(GCCGO_RUN_ALL_TESTS),syslog/check) \
tabwriter/check \ tabwriter/check \
template/check \ template/check \
time/check \ time/check \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment