Devon H. O'Dell | 553be84 | 2009-11-14 15:29:09 -0800 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Russ Cox | bbb00c6 | 2008-10-08 09:46:54 -0700 | [diff] [blame] | 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 | |
Shenghou Ma | 6d4da06 | 2012-03-10 03:42:23 +0800 | [diff] [blame] | 8 | eval $(go env) |
Russ Cox | 8290536 | 2012-02-04 00:54:08 -0500 | [diff] [blame] | 9 | |
Russ Cox | 69fd2a4 | 2010-03-31 19:48:33 -0700 | [diff] [blame] | 10 | unset CDPATH # in case user has it set |
Shenghou Ma | 23322ab | 2012-03-21 00:47:27 +0800 | [diff] [blame] | 11 | unset 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'Dell | 857d4cf | 2009-12-11 15:14:09 -0800 | [diff] [blame] | 13 | |
Russ Cox | da77679 | 2009-11-09 23:11:36 -0800 | [diff] [blame] | 14 | # no core files, please |
| 15 | ulimit -c 0 |
| 16 | |
Shenghou Ma | 329b27a | 2012-09-17 01:11:28 +0800 | [diff] [blame] | 17 | # 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 Ma | a1a414e | 2012-09-17 01:26:57 +0800 | [diff] [blame] | 21 | [ "$(ulimit -H -d)" == "unlimited" ] || ulimit -S -d $(ulimit -H -d) |
Shenghou Ma | 329b27a | 2012-09-17 01:11:28 +0800 | [diff] [blame] | 22 | |
Russ Cox | 8290536 | 2012-02-04 00:54:08 -0500 | [diff] [blame] | 23 | # allow all.bash to avoid double-build of everything |
Russ Cox | 69fd2a4 | 2010-03-31 19:48:33 -0700 | [diff] [blame] | 24 | rebuild=true |
| 25 | if [ "$1" = "--no-rebuild" ]; then |
Russ Cox | 69fd2a4 | 2010-03-31 19:48:33 -0700 | [diff] [blame] | 26 | shift |
Russ Cox | 8290536 | 2012-02-04 00:54:08 -0500 | [diff] [blame] | 27 | else |
| 28 | echo '# Building packages and commands.' |
| 29 | time go install -a -v std |
| 30 | echo |
Russ Cox | 69fd2a4 | 2010-03-31 19:48:33 -0700 | [diff] [blame] | 31 | fi |
Russ Cox | 8290536 | 2012-02-04 00:54:08 -0500 | [diff] [blame] | 32 | |
Shenghou Ma | 34ace10 | 2012-04-04 23:14:54 +0800 | [diff] [blame] | 33 | # 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. |
| 36 | unset GOROOT_FINAL |
| 37 | |
Russ Cox | 8290536 | 2012-02-04 00:54:08 -0500 | [diff] [blame] | 38 | echo '# Testing packages.' |
| 39 | time go test std -short -timeout=120s |
| 40 | echo |
| 41 | |
Rémy Oudompheng | aa1aaee | 2012-03-05 16:40:27 -0500 | [diff] [blame] | 42 | echo '# GOMAXPROCS=2 runtime -cpu=1,2,4' |
Shenghou Ma | 2ceb653 | 2012-03-21 16:19:37 +0800 | [diff] [blame] | 43 | GOMAXPROCS=2 go test runtime -short -timeout=240s -cpu=1,2,4 |
Russ Cox | 8290536 | 2012-02-04 00:54:08 -0500 | [diff] [blame] | 44 | echo |
| 45 | |
| 46 | echo '# sync -cpu=10' |
| 47 | go test sync -short -timeout=120s -cpu=10 |
| 48 | |
Russ Cox | 6d888f1 | 2013-02-15 13:37:43 -0800 | [diff] [blame] | 49 | # Race detector only supported on Linux and OS X, |
| 50 | # and only on amd64, and only when cgo is enabled. |
Shenghou Ma | eec9614 | 2013-02-23 20:24:38 +0800 | [diff] [blame] | 51 | case "$GOHOSTOS-$GOOS-$GOARCH-$CGO_ENABLED" in |
| 52 | linux-linux-amd64-1 | darwin-darwin-amd64-1) |
Dmitriy Vyukov | 95329d4 | 2012-11-01 22:02:52 +0400 | [diff] [blame] | 53 | echo |
| 54 | echo '# Testing race detector.' |
| 55 | go test -race -i flag |
| 56 | go test -race -short flag |
| 57 | esac |
| 58 | |
Russ Cox | bbb00c6 | 2008-10-08 09:46:54 -0700 | [diff] [blame] | 59 | xcd() { |
Ken Thompson | b379d54 | 2008-10-24 20:14:28 -0700 | [diff] [blame] | 60 | echo |
Russ Cox | c3f4319 | 2012-03-06 23:27:30 -0500 | [diff] [blame] | 61 | echo '#' $1 |
Devon H. O'Dell | 857d4cf | 2009-12-11 15:14:09 -0800 | [diff] [blame] | 62 | builtin cd "$GOROOT"/src/$1 |
Russ Cox | bbb00c6 | 2008-10-08 09:46:54 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Russ Cox | c024239 | 2011-08-10 21:36:48 -0400 | [diff] [blame] | 65 | [ "$CGO_ENABLED" != 1 ] || |
Alex Brainman | 642c774 | 2011-02-09 12:37:08 +1100 | [diff] [blame] | 66 | [ "$GOHOSTOS" == windows ] || |
Russ Cox | 2d72b39 | 2009-10-03 11:33:51 -0700 | [diff] [blame] | 67 | (xcd ../misc/cgo/stdio |
Shenghou Ma | 1e95429 | 2012-08-07 09:38:35 +0800 | [diff] [blame] | 68 | go run $GOROOT/test/run.go - . |
Russ Cox | 2d72b39 | 2009-10-03 11:33:51 -0700 | [diff] [blame] | 69 | ) || exit $? |
| 70 | |
Russ Cox | c024239 | 2011-08-10 21:36:48 -0400 | [diff] [blame] | 71 | [ "$CGO_ENABLED" != 1 ] || |
Russ Cox | 0cd3475 | 2010-12-17 09:51:55 -0800 | [diff] [blame] | 72 | (xcd ../misc/cgo/life |
Shenghou Ma | 1e95429 | 2012-08-07 09:38:35 +0800 | [diff] [blame] | 73 | go run $GOROOT/test/run.go - . |
Russ Cox | 0cd3475 | 2010-12-17 09:51:55 -0800 | [diff] [blame] | 74 | ) || exit $? |
| 75 | |
Russ Cox | c024239 | 2011-08-10 21:36:48 -0400 | [diff] [blame] | 76 | [ "$CGO_ENABLED" != 1 ] || |
Russ Cox | ec713d6 | 2011-03-11 15:09:32 -0500 | [diff] [blame] | 77 | (xcd ../misc/cgo/test |
Russ Cox | b4f3533 | 2013-03-19 15:45:42 -0400 | [diff] [blame] | 78 | go test -ldflags '-linkmode=auto' |
| 79 | go test -ldflags '-linkmode=internal' |
Russ Cox | 3b85b72 | 2013-03-11 00:51:42 -0400 | [diff] [blame] | 80 | case "$GOHOSTOS-$GOARCH" in |
Russ Cox | 761c386 | 2013-03-11 01:12:18 -0400 | [diff] [blame] | 81 | darwin-386 | darwin-amd64 | freebsd-386 | freebsd-amd64 | linux-386 | linux-amd64 | netbsd-386 | netbsd-amd64 | openbsd-386 | openbsd-amd64) |
Russ Cox | b4f3533 | 2013-03-19 15:45:42 -0400 | [diff] [blame] | 82 | go test -ldflags '-linkmode=external' |
Russ Cox | 3b85b72 | 2013-03-11 00:51:42 -0400 | [diff] [blame] | 83 | esac |
Russ Cox | ec713d6 | 2011-03-11 15:09:32 -0500 | [diff] [blame] | 84 | ) || exit $? |
| 85 | |
Dmitriy Vyukov | 11e73b8 | 2011-11-22 17:57:49 +0300 | [diff] [blame] | 86 | [ "$CGO_ENABLED" != 1 ] || |
| 87 | [ "$GOHOSTOS" == windows ] || |
Russ Cox | afb1b0e | 2012-03-07 10:15:20 -0500 | [diff] [blame] | 88 | [ "$GOHOSTOS" == darwin ] || |
Dmitriy Vyukov | 11e73b8 | 2011-11-22 17:57:49 +0300 | [diff] [blame] | 89 | (xcd ../misc/cgo/testso |
Russ Cox | afb1b0e | 2012-03-07 10:15:20 -0500 | [diff] [blame] | 90 | ./test.bash |
Dmitriy Vyukov | 11e73b8 | 2011-11-22 17:57:49 +0300 | [diff] [blame] | 91 | ) || exit $? |
| 92 | |
Rob Pike | 8d21004 | 2009-01-06 15:49:27 -0800 | [diff] [blame] | 93 | (xcd ../doc/progs |
Alex Brainman | 642c774 | 2011-02-09 12:37:08 +1100 | [diff] [blame] | 94 | time ./run |
Rob Pike | 8d21004 | 2009-01-06 15:49:27 -0800 | [diff] [blame] | 95 | ) || exit $? |
| 96 | |
Russ Cox | 6b33571 | 2011-03-27 23:39:42 -0400 | [diff] [blame] | 97 | [ "$GOARCH" == arm ] || # uses network, fails under QEMU |
Shenghou Ma | 90010f8 | 2012-03-08 06:23:56 +0800 | [diff] [blame] | 98 | (xcd ../doc/articles/wiki |
| 99 | make clean |
Shenghou Ma | d56e0e7 | 2012-03-08 12:04:49 +0900 | [diff] [blame] | 100 | ./test.bash |
Alex Brainman | 3bfd35b | 2011-01-31 15:58:44 +1100 | [diff] [blame] | 101 | ) || exit $? |
Andrew Gerrand | add4e16 | 2011-01-26 14:56:52 +1000 | [diff] [blame] | 102 | |
Rob Pike | 6492cac | 2012-03-26 16:08:21 +1100 | [diff] [blame] | 103 | (xcd ../doc/codewalk |
| 104 | # TODO: test these too. |
Rob Pike | 072646c | 2012-03-26 17:03:04 +1100 | [diff] [blame] | 105 | set -e |
Rob Pike | 6492cac | 2012-03-26 16:08:21 +1100 | [diff] [blame] | 106 | go build pig.go |
| 107 | go build urlpoll.go |
| 108 | rm -f pig urlpoll |
| 109 | ) || exit $? |
| 110 | |
Shenghou Ma | 90010f8 | 2012-03-08 06:23:56 +0800 | [diff] [blame] | 111 | echo |
| 112 | echo '#' ../misc/dashboard/builder ../misc/goplay |
Brad Fitzpatrick | f69132d | 2012-03-17 11:20:46 -0700 | [diff] [blame] | 113 | go build ../misc/dashboard/builder ../misc/goplay |
Andrew Gerrand | 06492d4 | 2010-10-21 10:46:10 +1100 | [diff] [blame] | 114 | |
Russ Cox | b7cb844 | 2010-09-22 15:30:42 +1000 | [diff] [blame] | 115 | [ "$GOARCH" == arm ] || |
Russ Cox | bcbb2f9 | 2011-12-13 17:46:54 -0500 | [diff] [blame] | 116 | (xcd ../test/bench/shootout |
Alex Brainman | 642c774 | 2011-02-09 12:37:08 +1100 | [diff] [blame] | 117 | ./timing.sh -test |
Rob Pike | 266a2c4 | 2009-08-09 14:31:05 -0700 | [diff] [blame] | 118 | ) || exit $? |
| 119 | |
Russ Cox | a5b2623 | 2013-03-15 12:39:14 -0400 | [diff] [blame] | 120 | [ "$GOOS" == openbsd ] || # golang.org/issue/5057 |
| 121 | ( |
Shenghou Ma | 90010f8 | 2012-03-08 06:23:56 +0800 | [diff] [blame] | 122 | echo |
| 123 | echo '#' ../test/bench/go1 |
Brad Fitzpatrick | f69132d | 2012-03-17 11:20:46 -0700 | [diff] [blame] | 124 | go test ../test/bench/go1 |
Russ Cox | a5b2623 | 2013-03-15 12:39:14 -0400 | [diff] [blame] | 125 | ) || exit $? |
Russ Cox | 6e88755 | 2011-12-15 12:32:59 -0500 | [diff] [blame] | 126 | |
Russ Cox | bbb00c6 | 2008-10-08 09:46:54 -0700 | [diff] [blame] | 127 | (xcd ../test |
Dave Cheney | fa21df3 | 2012-11-15 13:59:46 +1100 | [diff] [blame] | 128 | unset GOMAXPROCS |
| 129 | time go run run.go |
Russ Cox | 527669e | 2008-10-29 15:23:29 -0700 | [diff] [blame] | 130 | ) || exit $? |
Russ Cox | bbb00c6 | 2008-10-08 09:46:54 -0700 | [diff] [blame] | 131 | |
Russ Cox | b9f9476 | 2011-02-14 09:27:02 -0500 | [diff] [blame] | 132 | echo |
Brad Fitzpatrick | f69132d | 2012-03-17 11:20:46 -0700 | [diff] [blame] | 133 | echo '# Checking API compatibility.' |
Rob Pike | d87d488 | 2012-10-04 11:35:17 +1000 | [diff] [blame] | 134 | go tool api -c $GOROOT/api/go1.txt -next $GOROOT/api/next.txt -except $GOROOT/api/except.txt |
Brad Fitzpatrick | f69132d | 2012-03-17 11:20:46 -0700 | [diff] [blame] | 135 | |
| 136 | echo |
Russ Cox | b9f9476 | 2011-02-14 09:27:02 -0500 | [diff] [blame] | 137 | echo ALL TESTS PASSED |