Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(569)

Delta Between Two Patch Sets: src/run.bash

Issue 5484071: code review 5484071: test/bench/go1: first draft of Go 1 benchmark suite (Closed)
Left Patch Set: Created 13 years, 3 months ago
Right Patch Set: diff -r 99c8839944fa https://go.googlecode.com/hg/ Created 13 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/clean.bash ('k') | test/bench/go1/Makefile » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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 if [ "$1" = "--no-env" ]; then 7 if [ "$1" = "--no-env" ]; then
8 # caller has already run env.bash 8 # caller has already run env.bash
9 shift 9 shift
10 else 10 else
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 gomake clean 98 gomake clean
99 gomake 99 gomake
100 ) || exit $? 100 ) || exit $?
101 done 101 done
102 102
103 [ "$GOARCH" == arm ] || 103 [ "$GOARCH" == arm ] ||
104 (xcd ../test/bench/shootout 104 (xcd ../test/bench/shootout
105 ./timing.sh -test 105 ./timing.sh -test
106 ) || exit $? 106 ) || exit $?
107 107
108 (xcd ../test/bench/go1
109 gomake test
110 ) || exit $?
111
108 (xcd ../test 112 (xcd ../test
109 ./run 113 ./run
110 ) || exit $? 114 ) || exit $?
111 115
112 echo 116 echo
113 echo ALL TESTS PASSED 117 echo ALL TESTS PASSED
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b