2009-11-18 10:11:17 -07:00
#!/usr/bin/env bash
2008-09-17 13:14:52 -06:00
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
2010-03-30 11:34:57 -06:00
set -e
2010-12-13 13:50:57 -07:00
eval $(gomake --no-print-directory -f ../../src/Make.inc go-env)
2009-06-05 11:59:55 -06:00
if [ -z "$O" ]; then
echo 'missing $O - maybe no Make.$GOARCH?' 1>&2
exit 1
fi
rm -f *.$O
2008-09-17 13:14:52 -06:00
2011-07-01 08:18:07 -06:00
if [ "$GOOS" = "windows" ];then
2011-08-29 13:38:12 -06:00
$GC -o file.$O file_windows.go
2011-07-01 08:18:07 -06:00
else
$GC file.go
fi
2011-12-11 19:15:29 -07:00
defer_panic_recover="
defer.go
defer2.go
"
effective_go="
eff_bytesize.go
eff_qr.go
eff_sequence.go
"
2011-12-12 15:44:06 -07:00
error_handling="
error.go
error2.go
error3.go
error4.go
"
2011-12-11 19:15:29 -07:00
go_tutorial="
cat.go
cat_rot13.go
echo.go
helloworld.go
helloworld3.go
print.go
print_string.go
server.go
server1.go
sieve.go
sieve1.go
sort.go
sortmain.go
strings.go
sum.go
"
2008-09-17 13:14:52 -06:00
for i in \
2011-12-11 19:15:29 -07:00
$defer_panic_recover \
$effective_go \
2011-12-12 15:44:06 -07:00
$error_handling \
2011-12-11 19:15:29 -07:00
$go_tutorial \
go1.go \
2008-09-17 13:14:52 -06:00
; do
2010-08-30 13:40:56 -06:00
$GC $i
2008-09-17 13:14:52 -06:00
done
2011-10-14 13:37:07 -06:00
# Write to temporary file to avoid mingw bash bug.
TMPFILE="/tmp/gotest3"
2008-09-17 13:14:52 -06:00
function testit {
2010-08-30 13:40:56 -06:00
$LD $1.$O
2011-10-14 13:37:07 -06:00
./$O.out $2 2>&1 >"$TMPFILE" || true
x=$(echo $(cat "$TMPFILE")) # extra echo canonicalizes
2008-09-17 13:14:52 -06:00
if [ "$x" != "$3" ]
then
echo $1 failed: '"'$x'"' is not '"'$3'"'
fi
}
function testitpipe {
2010-08-30 13:40:56 -06:00
$LD $1.$O
2011-10-14 13:37:07 -06:00
./$O.out | $2 2>&1 >"$TMPFILE" || true
x=$(echo $(cat "$TMPFILE")) # extra echo canonicalizes
2008-09-17 13:14:52 -06:00
if [ "$x" != "$3" ]
then
echo $1 failed: '"'$x'"' is not '"'$3'"'
fi
}
testit helloworld "" "Hello, world; or Καλημέρα κόσμε; or こんにちは 世界"
2009-06-01 23:14:39 -06:00
testit helloworld3 "" "hello, world can't open file; err=no such file or directory"
2008-09-17 13:14:52 -06:00
testit echo "hello, world" "hello, world"
testit sum "" "6"
2011-01-31 15:41:36 -07:00
testit strings "" ""
2012-01-04 22:43:02 -07:00
testit defer "" "0 3210 2"
testit defer2 "" "Calling g. Printing in g 0 Printing in g 1 Printing in g 2 Printing in g 3 Panicking! Defer in g 3 Defer in g 2 Defer in g 1 Defer in g 0 Recovered in f 4 Returned normally from f."
2008-09-17 13:14:52 -06:00
alphabet=abcdefghijklmnopqrstuvwxyz
rot13=nopqrstuvwxyzabcdefghijklm
echo $alphabet | testit cat "" $alphabet
echo $alphabet | testit cat_rot13 "--rot13" $rot13
echo $rot13 | testit cat_rot13 "--rot13" $alphabet
2009-09-14 18:20:29 -06:00
testit sortmain "" "Sunday Monday Tuesday Wednesday Thursday Friday Saturday"
2008-09-17 13:14:52 -06:00
2009-01-09 16:16:31 -07:00
testit print "" "18446744073709551615 -1 18446744073709551615 {77 Sunset Strip} [1 2 3 4] 18446744073709551615 {77 Sunset Strip} [1 2 3 4] 18446744073709551615 {77 Sunset Strip} [1 2 3 4]"
testit print_string "" "77 Sunset Strip"
2008-09-17 13:14:52 -06:00
testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29"
testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29"
2009-01-30 11:18:58 -07:00
# server hangs; don't run it, just compile it
2010-08-30 13:40:56 -06:00
$GC server.go
2008-09-17 13:14:52 -06:00
testit server1 "" ""
2009-01-06 16:49:27 -07:00
2011-08-22 06:46:59 -06:00
testit eff_bytesize "" "1.00YB 9.09TB"
testit eff_sequence "" "[-1 2 6 16 44]"
2011-12-21 13:06:20 -07:00
testit go1 "" "Christmas is a holiday: true"
2011-12-07 17:11:17 -07:00
2011-10-14 13:37:07 -06:00
rm -f $O.out $O.out.exe *.$O "$TMPFILE"