blob: 0bf9927af24412c74be8698877ba72b66d124035 [file] [log] [blame]
Kai Backman5748c082009-08-18 07:17:34 -07001#!/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
6set -e
7bash make-arm.bash
8
9# TODO(kaib): add in proper tests
10#bash run.bash
Kai Backmane4eaf4c2009-09-18 19:09:29 -070011
12set -e
13
14xcd() {
15 echo
16 echo --- cd $1
17 builtin cd $1
18}
19
Kai Backmanf860bc02009-10-23 20:31:03 -070020# temporarily turn GC off
21# TODO(kaib): reenable GC once everything else works
22export GOGC=off
23
Kai Backmane4eaf4c2009-09-18 19:09:29 -070024(xcd ../test
25./run-arm
26) || exit $?