2009-11-14 15:29:09 -08:00
|
|
|
#!/usr/bin/env bash
|
2009-08-18 07:17:34 -07:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
bash make-arm.bash
|
|
|
|
|
|
|
|
|
|
# TODO(kaib): add in proper tests
|
|
|
|
|
#bash run.bash
|
2009-09-18 19:09:29 -07:00
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
xcd() {
|
|
|
|
|
echo
|
|
|
|
|
echo --- cd $1
|
|
|
|
|
builtin cd $1
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-23 20:31:03 -07:00
|
|
|
# temporarily turn GC off
|
|
|
|
|
# TODO(kaib): reenable GC once everything else works
|
|
|
|
|
export GOGC=off
|
|
|
|
|
|
2009-09-18 19:09:29 -07:00
|
|
|
(xcd ../test
|
|
|
|
|
./run-arm
|
|
|
|
|
) || exit $?
|