summaryrefslogtreecommitdiff
path: root/src/cmd/go/test.bash
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2013-06-09 21:50:24 +0800
committerShenghou Ma <minux.ma@gmail.com>2013-06-09 21:50:24 +0800
commit0aa5bc7dea4a85dfc6607e24953cf8253593e248 (patch)
tree7c7173fd9b52540d35c18115902e7dbcd5646493 /src/cmd/go/test.bash
parent7b8a6ce9d9c26e7109ae028ef3de7db1b9817b6d (diff)
downloadgo-0aa5bc7dea4a85dfc6607e24953cf8253593e248.tar.gz
all: fix typos
R=golang-dev, bradfitz, khr, r CC=golang-dev https://codereview.appspot.com/7461046
Diffstat (limited to 'src/cmd/go/test.bash')
-rwxr-xr-xsrc/cmd/go/test.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go/test.bash b/src/cmd/go/test.bash
index e2264a46e..3c8a83d1b 100755
--- a/src/cmd/go/test.bash
+++ b/src/cmd/go/test.bash
@@ -151,7 +151,7 @@ if ! ./testgo list std | cmp -s test_std.list - ; then
fi
rm -f test_std.list
-# issue 4096. Validate the output of unsucessful go install foo/quxx
+# issue 4096. Validate the output of unsuccessful go install foo/quxx
if [ $(./testgo install 'foo/quxx' 2>&1 | grep -c 'cannot find package "foo/quxx" in any of') -ne 1 ] ; then
echo 'go install foo/quxx expected error: .*cannot find package "foo/quxx" in any of'
ok=false