diff options
author | Sergey 'SnakE' Gromov <snake.scaly@gmail.com> | 2009-11-30 15:07:57 -0800 |
---|---|---|
committer | Sergey 'SnakE' Gromov <snake.scaly@gmail.com> | 2009-11-30 15:07:57 -0800 |
commit | 22830a3080c0b4a5caf89635033e87f40342373a (patch) | |
tree | 2b6c60f7ac0f21743bff1f04f1b302044e0effb2 /test/run | |
parent | 71ddfae921aedec508a45f43e6948b2ad1114e0e (diff) | |
download | go-22830a3080c0b4a5caf89635033e87f40342373a.tar.gz |
Make tests run on systems missing time utility
R=rsc
CC=golang-dev
http://codereview.appspot.com/164047
Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'test/run')
-rwxr-xr-x | test/run | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ do export F=$(basename $i .go) export D=$dir sed '/^\/\//!q' $i | sed 's@//@@; $d' |sed 's|./\$A.out|$E &|' >$RUNFILE - if ! time -p bash -c "bash $RUNFILE >$TMP1FILE 2>&1" 2>$TMP2FILE + if ! { time -p bash -c "bash $RUNFILE >$TMP1FILE 2>&1" ; } 2>$TMP2FILE then echo echo "===========" $i |