Kai Backman | 5748c08 | 2009-08-18 07:17:34 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Copyright 2009 The Go Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style |
| 4 | # license that can be found in the LICENSE file. |
| 5 | |
| 6 | set -e |
| 7 | bash make-arm.bash |
| 8 | |
| 9 | # TODO(kaib): add in proper tests |
| 10 | #bash run.bash |
Kai Backman | e4eaf4c | 2009-09-18 19:09:29 -0700 | [diff] [blame] | 11 | |
| 12 | set -e |
| 13 | |
| 14 | xcd() { |
| 15 | echo |
| 16 | echo --- cd $1 |
| 17 | builtin cd $1 |
| 18 | } |
| 19 | |
Kai Backman | f860bc0 | 2009-10-23 20:31:03 -0700 | [diff] [blame] | 20 | # temporarily turn GC off |
| 21 | # TODO(kaib): reenable GC once everything else works |
| 22 | export GOGC=off |
| 23 | |
Kai Backman | e4eaf4c | 2009-09-18 19:09:29 -0700 | [diff] [blame] | 24 | (xcd ../test |
| 25 | ./run-arm |
| 26 | ) || exit $? |