mirror of
https://github.com/golang/go
synced 2024-11-22 00:24:41 -07:00
doc: fix freebsd build
Also rename it to test.bash, for naming consistency. R=golang-dev, r CC=golang-dev https://golang.org/cl/5784045
This commit is contained in:
parent
9069721b0e
commit
d56e0e7e94
@ -1,4 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# Copyright 2010 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
|
set -e
|
||||||
wiki_pid=
|
wiki_pid=
|
||||||
@ -8,10 +11,10 @@ cleanup() {
|
|||||||
}
|
}
|
||||||
trap cleanup 0 INT
|
trap cleanup 0 INT
|
||||||
|
|
||||||
make get.bin
|
go build -o get.bin get.go
|
||||||
addr=$(./get.bin -addr)
|
addr=$(./get.bin -addr)
|
||||||
sed s/:8080/$addr/ < final.go > final-test.go
|
sed s/:8080/$addr/ < final.go > final-test.go
|
||||||
make final-test.bin
|
go build -o final-test.bin final-test.go
|
||||||
(./final-test.bin) &
|
(./final-test.bin) &
|
||||||
wiki_pid=$!
|
wiki_pid=$!
|
||||||
|
|
@ -71,7 +71,7 @@ time ./run
|
|||||||
[ "$GOARCH" == arm ] || # uses network, fails under QEMU
|
[ "$GOARCH" == arm ] || # uses network, fails under QEMU
|
||||||
(xcd ../doc/articles/wiki
|
(xcd ../doc/articles/wiki
|
||||||
make clean
|
make clean
|
||||||
./test.sh
|
./test.bash
|
||||||
) || exit $?
|
) || exit $?
|
||||||
|
|
||||||
echo
|
echo
|
||||||
|
Loading…
Reference in New Issue
Block a user