From: Joe Poirier Date: Mon, 13 Sep 2010 03:36:51 +0000 (+1000) Subject: (windows) disable tests that cause the build to fail X-Git-Tag: weekly.2010-09-15~25 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=479cbd6d34c213b6bdfc4bd3c2bc282bd195d5bd;p=gostls13.git (windows) disable tests that cause the build to fail R=rsc, brainman CC=golang-dev https://golang.org/cl/2171044 --- diff --git a/src/run.bash b/src/run.bash index 1100f52f2a..304b3e9f5a 100755 --- a/src/run.bash +++ b/src/run.bash @@ -76,8 +76,10 @@ time gomake test ) || exit $? (xcd ../misc/cgo/stdio -gomake clean -./test.bash +if [[ $(uname | tr A-Z a-z | sed 's/mingw/windows/') != *windows* ]]; then + gomake clean + ./test.bash +fi ) || exit $? (xcd pkg/exp/ogle @@ -86,14 +88,20 @@ time gomake ogle ) || exit $? (xcd ../doc/progs -time ./run +if [[ $(uname | tr A-Z a-z | sed 's/mingw/windows/') != *windows* ]]; then + time ./run +fi ) || exit $? (xcd ../test/bench -./timing.sh -test +if [[ $(uname | tr A-Z a-z | sed 's/mingw/windows/') != *windows* ]]; then + ./timing.sh -test +fi ) || exit $? (xcd ../test -./run +if [[ $(uname | tr A-Z a-z | sed 's/mingw/windows/') != *windows* ]]; then + ./run +fi ) || exit $?