blob: 538d4f6fe06c300ef57f59ef76d7f4e26d3763db [file] [log] [blame]
Devon H. O'Dell553be842009-11-14 15:29:09 -08001#!/usr/bin/env bash
Russ Coxbbb00c62008-10-08 09:46:54 -07002# 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
6set -e
7
Shenghou Ma6d4da062012-03-10 03:42:23 +08008eval $(go env)
Russ Cox82905362012-02-04 00:54:08 -05009
Russ Cox69fd2a42010-03-31 19:48:33 -070010unset CDPATH # in case user has it set
Shenghou Ma23322ab2012-03-21 00:47:27 +080011unset GOPATH # we disallow local import for non-local packages, if $GOROOT happens
12 # to be under $GOPATH, then some tests below will fail
Devon H. O'Dell857d4cf2009-12-11 15:14:09 -080013
Russ Coxda776792009-11-09 23:11:36 -080014# no core files, please
15ulimit -c 0
16
Shenghou Ma329b27a2012-09-17 01:11:28 +080017# Raise soft limits to hard limits for NetBSD/OpenBSD.
18# We need at least 256 files and ~300 MB of bss.
19# On OS X ulimit -S -n rejects 'unlimited'.
20[ "$(ulimit -H -n)" == "unlimited" ] || ulimit -S -n $(ulimit -H -n)
Shenghou Maa1a414e2012-09-17 01:26:57 +080021[ "$(ulimit -H -d)" == "unlimited" ] || ulimit -S -d $(ulimit -H -d)
Shenghou Ma329b27a2012-09-17 01:11:28 +080022
Russ Cox82905362012-02-04 00:54:08 -050023# allow all.bash to avoid double-build of everything
Russ Cox69fd2a42010-03-31 19:48:33 -070024rebuild=true
25if [ "$1" = "--no-rebuild" ]; then
Russ Cox69fd2a42010-03-31 19:48:33 -070026 shift
Russ Cox82905362012-02-04 00:54:08 -050027else
28 echo '# Building packages and commands.'
29 time go install -a -v std
30 echo
Russ Cox69fd2a42010-03-31 19:48:33 -070031fi
Russ Cox82905362012-02-04 00:54:08 -050032
Shenghou Ma34ace102012-04-04 23:14:54 +080033# we must unset GOROOT_FINAL before tests, because runtime/debug requires
34# correct access to source code, so if we have GOROOT_FINAL in effect,
35# at least runtime/debug test will fail.
36unset GOROOT_FINAL
37
Russ Cox82905362012-02-04 00:54:08 -050038echo '# Testing packages.'
39time go test std -short -timeout=120s
40echo
41
Rémy Oudomphengaa1aaee2012-03-05 16:40:27 -050042echo '# GOMAXPROCS=2 runtime -cpu=1,2,4'
Shenghou Ma2ceb6532012-03-21 16:19:37 +080043GOMAXPROCS=2 go test runtime -short -timeout=240s -cpu=1,2,4
Russ Cox82905362012-02-04 00:54:08 -050044echo
45
46echo '# sync -cpu=10'
47go test sync -short -timeout=120s -cpu=10
48
Russ Cox6d888f12013-02-15 13:37:43 -080049# Race detector only supported on Linux and OS X,
50# and only on amd64, and only when cgo is enabled.
Shenghou Maeec96142013-02-23 20:24:38 +080051case "$GOHOSTOS-$GOOS-$GOARCH-$CGO_ENABLED" in
52linux-linux-amd64-1 | darwin-darwin-amd64-1)
Dmitriy Vyukov95329d42012-11-01 22:02:52 +040053 echo
54 echo '# Testing race detector.'
55 go test -race -i flag
56 go test -race -short flag
57esac
58
Russ Coxbbb00c62008-10-08 09:46:54 -070059xcd() {
Ken Thompsonb379d542008-10-24 20:14:28 -070060 echo
Russ Coxc3f43192012-03-06 23:27:30 -050061 echo '#' $1
Devon H. O'Dell857d4cf2009-12-11 15:14:09 -080062 builtin cd "$GOROOT"/src/$1
Russ Coxbbb00c62008-10-08 09:46:54 -070063}
64
Russ Coxc0242392011-08-10 21:36:48 -040065[ "$CGO_ENABLED" != 1 ] ||
Alex Brainman642c7742011-02-09 12:37:08 +110066[ "$GOHOSTOS" == windows ] ||
Russ Cox2d72b392009-10-03 11:33:51 -070067(xcd ../misc/cgo/stdio
Shenghou Ma1e954292012-08-07 09:38:35 +080068go run $GOROOT/test/run.go - .
Russ Cox2d72b392009-10-03 11:33:51 -070069) || exit $?
70
Russ Coxc0242392011-08-10 21:36:48 -040071[ "$CGO_ENABLED" != 1 ] ||
Russ Cox0cd34752010-12-17 09:51:55 -080072(xcd ../misc/cgo/life
Shenghou Ma1e954292012-08-07 09:38:35 +080073go run $GOROOT/test/run.go - .
Russ Cox0cd34752010-12-17 09:51:55 -080074) || exit $?
75
Russ Coxc0242392011-08-10 21:36:48 -040076[ "$CGO_ENABLED" != 1 ] ||
Russ Coxec713d62011-03-11 15:09:32 -050077(xcd ../misc/cgo/test
Russ Coxb4f35332013-03-19 15:45:42 -040078go test -ldflags '-linkmode=auto'
79go test -ldflags '-linkmode=internal'
Russ Cox3b85b722013-03-11 00:51:42 -040080case "$GOHOSTOS-$GOARCH" in
Russ Cox761c3862013-03-11 01:12:18 -040081darwin-386 | darwin-amd64 | freebsd-386 | freebsd-amd64 | linux-386 | linux-amd64 | netbsd-386 | netbsd-amd64 | openbsd-386 | openbsd-amd64)
Russ Coxb4f35332013-03-19 15:45:42 -040082 go test -ldflags '-linkmode=external'
Russ Cox3b85b722013-03-11 00:51:42 -040083esac
Russ Coxec713d62011-03-11 15:09:32 -050084) || exit $?
85
Dmitriy Vyukov11e73b82011-11-22 17:57:49 +030086[ "$CGO_ENABLED" != 1 ] ||
87[ "$GOHOSTOS" == windows ] ||
Russ Coxafb1b0e2012-03-07 10:15:20 -050088[ "$GOHOSTOS" == darwin ] ||
Dmitriy Vyukov11e73b82011-11-22 17:57:49 +030089(xcd ../misc/cgo/testso
Russ Coxafb1b0e2012-03-07 10:15:20 -050090./test.bash
Dmitriy Vyukov11e73b82011-11-22 17:57:49 +030091) || exit $?
92
Rob Pike8d210042009-01-06 15:49:27 -080093(xcd ../doc/progs
Alex Brainman642c7742011-02-09 12:37:08 +110094time ./run
Rob Pike8d210042009-01-06 15:49:27 -080095) || exit $?
96
Russ Cox6b335712011-03-27 23:39:42 -040097[ "$GOARCH" == arm ] || # uses network, fails under QEMU
Shenghou Ma90010f82012-03-08 06:23:56 +080098(xcd ../doc/articles/wiki
99make clean
Shenghou Mad56e0e72012-03-08 12:04:49 +0900100./test.bash
Alex Brainman3bfd35b2011-01-31 15:58:44 +1100101) || exit $?
Andrew Gerrandadd4e162011-01-26 14:56:52 +1000102
Rob Pike6492cac2012-03-26 16:08:21 +1100103(xcd ../doc/codewalk
104# TODO: test these too.
Rob Pike072646c2012-03-26 17:03:04 +1100105set -e
Rob Pike6492cac2012-03-26 16:08:21 +1100106go build pig.go
107go build urlpoll.go
108rm -f pig urlpoll
109) || exit $?
110
Shenghou Ma90010f82012-03-08 06:23:56 +0800111echo
112echo '#' ../misc/dashboard/builder ../misc/goplay
Brad Fitzpatrickf69132d2012-03-17 11:20:46 -0700113go build ../misc/dashboard/builder ../misc/goplay
Andrew Gerrand06492d42010-10-21 10:46:10 +1100114
Russ Coxb7cb8442010-09-22 15:30:42 +1000115[ "$GOARCH" == arm ] ||
Russ Coxbcbb2f92011-12-13 17:46:54 -0500116(xcd ../test/bench/shootout
Alex Brainman642c7742011-02-09 12:37:08 +1100117./timing.sh -test
Rob Pike266a2c42009-08-09 14:31:05 -0700118) || exit $?
119
Russ Coxa5b26232013-03-15 12:39:14 -0400120[ "$GOOS" == openbsd ] || # golang.org/issue/5057
121(
Shenghou Ma90010f82012-03-08 06:23:56 +0800122echo
123echo '#' ../test/bench/go1
Brad Fitzpatrickf69132d2012-03-17 11:20:46 -0700124go test ../test/bench/go1
Russ Coxa5b26232013-03-15 12:39:14 -0400125) || exit $?
Russ Cox6e887552011-12-15 12:32:59 -0500126
Russ Coxbbb00c62008-10-08 09:46:54 -0700127(xcd ../test
Dave Cheneyfa21df32012-11-15 13:59:46 +1100128unset GOMAXPROCS
129time go run run.go
Russ Cox527669e2008-10-29 15:23:29 -0700130) || exit $?
Russ Coxbbb00c62008-10-08 09:46:54 -0700131
Russ Coxb9f94762011-02-14 09:27:02 -0500132echo
Brad Fitzpatrickf69132d2012-03-17 11:20:46 -0700133echo '# Checking API compatibility.'
Rob Piked87d4882012-10-04 11:35:17 +1000134go tool api -c $GOROOT/api/go1.txt -next $GOROOT/api/next.txt -except $GOROOT/api/except.txt
Brad Fitzpatrickf69132d2012-03-17 11:20:46 -0700135
136echo
Russ Coxb9f94762011-02-14 09:27:02 -0500137echo ALL TESTS PASSED