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
This commit is contained in:
Ian Lance Taylor 2011-03-09 05:57:10 +00:00
parent a601335076
commit 8897c836a8
2 changed files with 6 additions and 6 deletions

View 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 \

View 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 \