OLD | NEW |
1 #!/usr/bin/env 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 set -e | 6 set -e |
7 | 7 |
8 eval $(gomake --no-print-directory -f ../../src/Make.inc go-env) | 8 eval $(gomake --no-print-directory -f ../../src/Make.inc go-env) |
9 | 9 |
10 if [ -z "$O" ]; then | 10 if [ -z "$O" ]; then |
(...skipping 17 matching lines...) Expand all Loading... |
28 cat_rot13.go \ | 28 cat_rot13.go \ |
29 sum.go \ | 29 sum.go \ |
30 sort.go \ | 30 sort.go \ |
31 sortmain.go \ | 31 sortmain.go \ |
32 print.go \ | 32 print.go \ |
33 print_string.go \ | 33 print_string.go \ |
34 sieve.go \ | 34 sieve.go \ |
35 sieve1.go \ | 35 sieve1.go \ |
36 server1.go \ | 36 server1.go \ |
37 strings.go \ | 37 strings.go \ |
| 38 eff_bytesize.go\ |
38 eff_qr.go \ | 39 eff_qr.go \ |
| 40 eff_sequence.go\ |
39 ; do | 41 ; do |
40 $GC $i | 42 $GC $i |
41 done | 43 done |
42 | 44 |
43 function testit { | 45 function testit { |
44 $LD $1.$O | 46 $LD $1.$O |
45 x=$(echo $(./$O.out $2 2>&1)) # extra echo canonicalizes | 47 x=$(echo $(./$O.out $2 2>&1)) # extra echo canonicalizes |
46 if [ "$x" != "$3" ] | 48 if [ "$x" != "$3" ] |
47 then | 49 then |
48 echo $1 failed: '"'$x'"' is not '"'$3'"' | 50 echo $1 failed: '"'$x'"' is not '"'$3'"' |
(...skipping 27 matching lines...) Expand all Loading... |
76 testit print "" "18446744073709551615 -1 18446744073709551615 {77 Sunset Strip}
[1 2 3 4] 18446744073709551615 {77 Sunset Strip} [1 2 3 4] 18446744073709551615
{77 Sunset Strip} [1 2 3 4]" | 78 testit print "" "18446744073709551615 -1 18446744073709551615 {77 Sunset Strip}
[1 2 3 4] 18446744073709551615 {77 Sunset Strip} [1 2 3 4] 18446744073709551615
{77 Sunset Strip} [1 2 3 4]" |
77 testit print_string "" "77 Sunset Strip" | 79 testit print_string "" "77 Sunset Strip" |
78 | 80 |
79 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" | 81 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" |
80 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" | 82 testitpipe sieve "sed 10q" "2 3 5 7 11 13 17 19 23 29" |
81 | 83 |
82 # server hangs; don't run it, just compile it | 84 # server hangs; don't run it, just compile it |
83 $GC server.go | 85 $GC server.go |
84 testit server1 "" "" | 86 testit server1 "" "" |
85 | 87 |
| 88 testit eff_bytesize "" "1.00YB 9.09TB" |
| 89 testit eff_sequence "" "[-1 2 6 16 44]" |
| 90 |
86 rm -f $O.out *.$O | 91 rm -f $O.out *.$O |
OLD | NEW |