OLD | NEW |
1 #!/bin/bash | 1 #!/usr/bin/env bash |
2 # Copyright 2009 The Go Authors. All rights reserved. | 2 # Copyright 2009 The Go Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style | 3 # Use of this source code is governed by a BSD-style |
4 # license that can be found in the LICENSE file. | 4 # license that can be found in the LICENSE file. |
5 | 5 |
6 . $GOROOT/src/Make.$GOARCH | 6 . $GOROOT/src/Make.$GOARCH |
7 | 7 |
8 if [ -z "$O" ]; then | 8 if [ -z "$O" ]; then |
9 echo 'missing $O - maybe no Make.$GOARCH?' 1>&2 | 9 echo 'missing $O - maybe no Make.$GOARCH?' 1>&2 |
10 exit 1 | 10 exit 1 |
11 fi | 11 fi |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 testit print_string "" "77 Sunset Strip" | 69 testit print_string "" "77 Sunset Strip" |
70 | 70 |
71 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" | 71 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" |
72 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" | 72 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" |
73 | 73 |
74 # server hangs; don't run it, just compile it | 74 # server hangs; don't run it, just compile it |
75 $GC server.go | 75 $GC server.go |
76 testit server1 "" "" | 76 testit server1 "" "" |
77 | 77 |
78 rm -f $O.out *.$O | 78 rm -f $O.out *.$O |
OLD | NEW |