]> Cypherpunks.ru repositories - gostls13.git/blob - src/run.bash
[dev.cc] cmd/go: fix expansion of 'std', add 'cmd'
[gostls13.git] / src / run.bash
1 #!/usr/bin/env bash
2 # Copyright 2009 The Go Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style
4 # license that can be found in the LICENSE file.
5
6 set -e
7
8 eval $(go env)
9 export GOROOT   # the api test requires GOROOT to be set.
10
11 unset CDPATH    # in case user has it set
12 unset GOPATH    # we disallow local import for non-local packages, if $GOROOT happens
13                 # to be under $GOPATH, then some tests below will fail
14
15 # no core files, please
16 ulimit -c 0
17
18 # Raise soft limits to hard limits for NetBSD/OpenBSD.
19 # We need at least 256 files and ~300 MB of bss.
20 # On OS X ulimit -S -n rejects 'unlimited'.
21 #
22 # Note that ulimit -S -n may fail if ulimit -H -n is set higher than a
23 # non-root process is allowed to set the high limit.
24 # This is a system misconfiguration and should be fixed on the
25 # broken system, not "fixed" by ignoring the failure here.
26 # See longer discussion on golang.org/issue/7381. 
27 [ "$(ulimit -H -n)" == "unlimited" ] || ulimit -S -n $(ulimit -H -n)
28 [ "$(ulimit -H -d)" == "unlimited" ] || ulimit -S -d $(ulimit -H -d)
29
30 # Thread count limit on NetBSD 7.
31 if ulimit -T &> /dev/null; then
32         [ "$(ulimit -H -T)" == "unlimited" ] || ulimit -S -T $(ulimit -H -T)
33 fi
34
35 # allow all.bash to avoid double-build of everything
36 rebuild=true
37 if [ "$1" == "--no-rebuild" ]; then
38         shift
39 else
40         echo '##### Building packages and commands.'
41         time go install -a -v std cmd
42         echo
43 fi
44
45 # we must unset GOROOT_FINAL before tests, because runtime/debug requires
46 # correct access to source code, so if we have GOROOT_FINAL in effect,
47 # at least runtime/debug test will fail.
48 unset GOROOT_FINAL
49
50 # TODO(adg): create an environment variable and to permit the builders to
51 # specify the timeout scale.
52 timeout_scale=1
53 # the freebsd-* builders are slow, and there's no easy way to make them faster.
54 [ "$GOOS" == "freebsd" ] && timeout_scale=2
55 # increase timeout for ARM up to 3 times the normal value
56 [ "$GOARCH" == "arm" ] && timeout_scale=3
57
58 echo '##### Testing packages.'
59 time go test std cmd -short -timeout=$(expr 120 \* $timeout_scale)s -gcflags "$GO_GCFLAGS"
60 echo
61
62 # We set GOMAXPROCS=2 in addition to -cpu=1,2,4 in order to test runtime bootstrap code,
63 # creation of first goroutines and first garbage collections in the parallel setting.
64 echo '##### GOMAXPROCS=2 runtime -cpu=1,2,4'
65 GOMAXPROCS=2 go test runtime -short -timeout=$(expr 300 \* $timeout_scale)s -cpu=1,2,4
66 echo
67
68 echo '##### sync -cpu=10'
69 go test sync -short -timeout=$(expr 120 \* $timeout_scale)s -cpu=10
70
71 xcd() {
72         echo
73         echo '#####' $1
74         builtin cd "$GOROOT"/src/$1 || exit 1
75 }
76
77 # NOTE: "set -e" cannot help us in subshells. It works until you test it with ||.
78 #
79 #       $ bash --version
80 #       GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin12)
81 #       Copyright (C) 2007 Free Software Foundation, Inc.
82 #
83 #       $ set -e; (set -e; false; echo still here); echo subshell exit status $?
84 #       subshell exit status 1
85 #       # subshell stopped early, set exit status, but outer set -e didn't stop.
86 #
87 #       $ set -e; (set -e; false; echo still here) || echo stopped
88 #       still here
89 #       # somehow the '|| echo stopped' broke the inner set -e.
90 #       
91 # To avoid this bug, every command in a subshell should have '|| exit 1' on it.
92 # Strictly speaking, the test may be unnecessary on the final command of
93 # the subshell, but it aids later editing and may avoid future bash bugs.
94
95 if [ "$GOOS" == "android" ]; then
96         # Disable cgo tests on android.
97         # They are not designed to run off the host.
98         # golang.org/issue/8345
99         CGO_ENABLED=0
100 fi
101
102 [ "$CGO_ENABLED" != 1 ] ||
103 [ "$GOHOSTOS" == windows ] ||
104 (xcd ../misc/cgo/stdio
105 go run $GOROOT/test/run.go - . || exit 1
106 ) || exit $?
107
108 [ "$CGO_ENABLED" != 1 ] ||
109 (xcd ../misc/cgo/life
110 go run $GOROOT/test/run.go - . || exit 1
111 ) || exit $?
112
113 [ "$CGO_ENABLED" != 1 ] ||
114 (xcd ../misc/cgo/test
115 # cgo tests inspect the traceback for runtime functions
116 extlink=0
117 export GOTRACEBACK=2
118 go test -ldflags '-linkmode=auto' || exit 1
119 # linkmode=internal fails on dragonfly since errno is a TLS relocation.
120 [ "$GOHOSTOS" == dragonfly ] || go test -ldflags '-linkmode=internal' || exit 1
121 # TODO(austin): Add linux-ppc64(le) once external linking works (issue #8912)
122 case "$GOHOSTOS-$GOARCH" in
123 openbsd-386 | openbsd-amd64)
124         # test linkmode=external, but __thread not supported, so skip testtls.
125         go test -ldflags '-linkmode=external' || exit 1
126         extlink=1
127         ;;
128 darwin-386 | darwin-amd64)
129         # linkmode=external fails on OS X 10.6 and earlier == Darwin
130         # 10.8 and earlier.
131         case $(uname -r) in
132         [0-9].* | 10.*) ;;
133         *)
134                 go test -ldflags '-linkmode=external'  || exit 1
135                 extlink=1
136                 ;;
137         esac
138         ;;
139 android-arm | dragonfly-386 | dragonfly-amd64 | freebsd-386 | freebsd-amd64 | freebsd-arm | linux-386 | linux-amd64 | linux-arm | netbsd-386 | netbsd-amd64)
140         go test -ldflags '-linkmode=external' || exit 1
141         go test -ldflags '-linkmode=auto' ../testtls || exit 1
142         go test -ldflags '-linkmode=external' ../testtls || exit 1
143         extlink=1
144         
145         case "$GOHOSTOS-$GOARCH" in
146         netbsd-386 | netbsd-amd64) ;; # no static linking
147         freebsd-arm) ;; # -fPIC compiled tls code will use __tls_get_addr instead
148                         # of __aeabi_read_tp, however, on FreeBSD/ARM, __tls_get_addr
149                         # is implemented in rtld-elf, so -fPIC isn't compatible with
150                         # static linking on FreeBSD/ARM with clang. (cgo depends on
151                         # -fPIC fundamentally.)
152         *)
153                 if ! $CC -xc -o /dev/null -static - 2>/dev/null <<<'int main() {}' ; then
154                         echo "No support for static linking found (lacks libc.a?), skip cgo static linking test."
155                 else
156                         go test -ldflags '-linkmode=external -extldflags "-static -pthread"' ../testtls || exit 1
157                         go test ../nocgo || exit 1
158                         go test -ldflags '-linkmode=external' ../nocgo || exit 1
159                         go test -ldflags '-linkmode=external -extldflags "-static -pthread"' ../nocgo || exit 1
160                 fi
161                 ;;
162         esac
163         ;;
164 esac
165 ) || exit $?
166
167 # Race detector only supported on Linux, FreeBSD and OS X,
168 # and only on amd64, and only when cgo is enabled.
169 # Delayed until here so we know whether to try external linking.
170 case "$GOHOSTOS-$GOOS-$GOARCH-$CGO_ENABLED" in
171 linux-linux-amd64-1 | freebsd-freebsd-amd64-1 | darwin-darwin-amd64-1)
172         echo
173         echo '##### Testing race detector.'
174         go test -race -i runtime/race flag os/exec
175         go test -race -run=Output runtime/race
176         go test -race -short flag os/exec
177         
178         # Test with external linking; see issue 9133.
179         if [ "$extlink" = 1 ]; then
180                 go test -race -short -ldflags=-linkmode=external flag os/exec
181         fi
182 esac
183
184 [ "$CGO_ENABLED" != 1 ] || [ "$GOOS" == darwin ] ||
185 (xcd ../misc/cgo/testgodefs
186 ./test.bash || exit 1
187 ) || exit $?
188
189 [ "$CGO_ENABLED" != 1 ] ||
190 [ "$GOHOSTOS" == windows ] ||
191 (xcd ../misc/cgo/testso
192 ./test.bash || exit 1
193 ) || exit $?
194
195 [ "$CGO_ENABLED" != 1 ] ||
196 [ "$GOHOSTOS-$GOARCH" != linux-amd64 ] ||
197 (xcd ../misc/cgo/testasan
198 go run main.go || exit 1
199 ) || exit $?
200
201 [ "$CGO_ENABLED" != 1 ] ||
202 [ "$GOHOSTOS" == windows ] ||
203 (xcd ../misc/cgo/errors
204 ./test.bash || exit 1
205 ) || exit $?
206
207 [ "$GOOS" == nacl ] ||
208 [ "$GOOS" == android ] ||
209 (xcd ../doc/progs
210 time ./run || exit 1
211 ) || exit $?
212
213 [ "$GOOS" == android ] ||
214 [ "$GOOS" == nacl ] ||
215 [ "$GOARCH" == arm ] ||  # uses network, fails under QEMU
216 (xcd ../doc/articles/wiki
217 ./test.bash || exit 1
218 ) || exit $?
219
220 [ "$GOOS" == android ] ||
221 [ "$GOOS" == nacl ] ||
222 (xcd ../doc/codewalk
223 time ./run || exit 1
224 ) || exit $?
225
226 [ "$GOOS" == nacl ] ||
227 [ "$GOARCH" == arm ] ||
228 (xcd ../test/bench/shootout
229 time ./timing.sh -test || exit 1
230 ) || exit $?
231
232 [ "$GOOS" == android ] || # TODO(crawshaw): get this working
233 [ "$GOOS" == openbsd ] || # golang.org/issue/5057
234 (
235 echo
236 echo '#####' ../test/bench/go1
237 go test ../test/bench/go1 || exit 1
238 ) || exit $?
239
240 [ "$GOOS" == android ] ||
241 (xcd ../test
242 unset GOMAXPROCS
243 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build -o runtest run.go || exit 1
244 time ./runtest || exit 1
245 rm -f runtest
246 ) || exit $?
247
248 [ "$GOOS" == android ] ||
249 [ "$GOOS" == nacl ] ||
250 (
251 echo
252 time go run $GOROOT/src/cmd/api/run.go || exit 1
253 ) || exit $?
254
255 echo
256 echo ALL TESTS PASSED