mirror of
https://github.com/golang/go
synced 2024-11-05 19:46:11 -07:00
efbd79ce5a
Due to removal of go_tutorial, unused programs are removed. makehtml is unnecessary (it also gives wrong messages when the destination file doesn't exist) progs/run now compiles all remaining programs under doc/progs. Fixes #3076 (again) R=golang-dev, adg CC=golang-dev https://golang.org/cl/5755053
61 lines
1.2 KiB
Bash
Executable File
61 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# 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.
|
|
|
|
set -e
|
|
|
|
defer_panic_recover="
|
|
defer
|
|
defer2
|
|
"
|
|
|
|
effective_go="
|
|
eff_bytesize
|
|
eff_qr
|
|
eff_sequence
|
|
"
|
|
|
|
error_handling="
|
|
error
|
|
error2
|
|
error3
|
|
error4
|
|
"
|
|
|
|
law_of_reflection="
|
|
interface
|
|
interface2
|
|
"
|
|
|
|
all=$(echo $defer_panic_recover $effective_go $error_handling $law_of_reflection slices go1)
|
|
|
|
for i in $all; do
|
|
go build $i.go
|
|
done
|
|
|
|
# Write to temporary file to avoid mingw bash bug.
|
|
TMPFILE="${TMPDIR:-/tmp}/gotest3.$USER"
|
|
|
|
function testit {
|
|
./$1 >"$TMPFILE" 2>&1 || true
|
|
x=$(echo $(cat "$TMPFILE")) # extra echo canonicalizes
|
|
if ! echo "$x" | grep "$2" > /dev/null
|
|
then
|
|
echo $1 failed: '"'$x'"' is not '"'$2'"'
|
|
fi
|
|
}
|
|
|
|
|
|
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.$'
|
|
|
|
testit eff_bytesize '^1.00YB 9.09TB$'
|
|
testit eff_sequence '^\[-1 2 6 16 44\]$'
|
|
|
|
testit go1 '^Christmas is a holiday: true Sleeping for 0.123s.*go1.go already exists$'
|
|
|
|
testit interface2 "^type: float64$"
|
|
|
|
rm -f $all "$TMPFILE"
|