Commit 90010f8f authored by Shenghou Ma's avatar Shenghou Ma

build: re-enable some broken tests in run.bash

        Updates #2982.

R=rsc, rsc
CC=golang-dev
https://golang.org/cl/5759064
parent 5c4d6ebb
......@@ -24,10 +24,10 @@ _testmain.go
build.out
test.out
doc/tmpltohtml
doc/codelab/wiki/*.bin
doc/articles/wiki/*.bin
misc/cgo/life/run.out
misc/cgo/stdio/run.out
misc/dashboard/builder/gobuilder
misc/dashboard/builder/builder
misc/goplay/goplay
misc/osx/*.pkg
misc/osx/*.dmg
......
......@@ -39,8 +39,6 @@ xcd() {
builtin cd "$GOROOT"/src/$1
}
BROKEN=true
[ "$CGO_ENABLED" != 1 ] ||
[ "$GOHOSTOS" == windows ] ||
(xcd ../misc/cgo/stdio
......@@ -70,33 +68,24 @@ $BROKEN ||
time ./run
) || exit $?
$BROKEN ||
[ "$GOARCH" == arm ] || # uses network, fails under QEMU
(xcd ../doc/codelab/wiki
"$GOMAKE" clean
"$GOMAKE"
"$GOMAKE" test
(xcd ../doc/articles/wiki
make clean
./test.sh
) || exit $?
$BROKEN ||
for i in ../misc/dashboard/builder ../misc/goplay
do
(xcd $i
"$GOMAKE" clean
"$GOMAKE"
) || exit $?
done
echo
echo '#' ../misc/dashboard/builder ../misc/goplay
go build ../misc/dashboard/builder ../misc/goplay || exit $?
$BROKEN ||
[ "$GOARCH" == arm ] ||
(xcd ../test/bench/shootout
./timing.sh -test
) || exit $?
$BROKEN ||
(xcd ../test/bench/go1
"$GOMAKE" test
) || exit $?
echo
echo '#' ../test/bench/go1
go test ../test/bench/go1 || exit $?
(xcd ../test
time go run run.go
......
TARG=go1
test:
echo go1: tests disabled for now TODO
package go1
// Nothing to see here: everything is in the _test files.
......@@ -21,20 +21,14 @@ var (
func init() {
var buf bytes.Buffer
c, err := gz.NewWriter(&buf)
if err != nil {
panic(err)
}
c := gz.NewWriter(&buf)
c.Write(jsongunz)
c.Close()
jsongz = buf.Bytes()
}
func gzip() {
c, err := gz.NewWriter(ioutil.Discard)
if err != nil {
panic(err)
}
c := gz.NewWriter(ioutil.Discard)
if _, err := c.Write(jsongunz); err != nil {
panic(err)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment