aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorDevon H. O'Dell <devon.odell@gmail.com>2009-11-14 15:29:09 -0800
committerRuss Cox <rsc@golang.org>2009-11-14 15:29:09 -0800
commit553be8427ed619cff7f4e58e4a0dd8d858b49d26 (patch)
tree941ec3d9eb7c810cae198cd58a03ce92d828c763 /src/run.bash
parent96bcdff6622d49174465e4102bd07c49cc5cc169 (diff)
downloadgo-553be8427ed619cff7f4e58e4a0dd8d858b49d26.tar.xz
Build changes to support work on the BSDs.
This does still contain some FreeBSD-specific bits, but it's a pain to do partial diffs. R=rsc https://golang.org/cl/152138
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/run.bash b/src/run.bash
index c13eb22189..e307ddcc1f 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/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.
@@ -19,10 +19,10 @@ maketest() {
do
(
xcd $i
- make clean
- time make
- make install
- make test
+ gomake clean
+ time gomake
+ gomake install
+ gomake test
) || exit $?
done
}
@@ -34,31 +34,31 @@ maketest \
# from what maketest does.
(xcd pkg/sync;
-make clean;
-time make
-GOMAXPROCS=10 make test
+gomake clean;
+time gomake
+GOMAXPROCS=10 gomake test
) || exit $?
(xcd cmd/gofmt
-make clean
-time make
-time make smoketest
+gomake clean
+time gomake
+time gomake smoketest
) || exit $?
(xcd cmd/ebnflint
-make clean
-time make
-time make test
+gomake clean
+time gomake
+time gomake test
) || exit $?
(xcd ../misc/cgo/stdio
-make clean
+gomake clean
./test.bash
) || exit $?
(xcd pkg/exp/ogle
-make clean
-time make ogle
+gomake clean
+time gomake ogle
) || exit $?
(xcd ../doc/progs