Delta Between Two Patch Sets: src/cmd/go/test.bash
Issue 5732045 :
code review 5732045: cmd/go: fix relative imports again (Closed)
Left Patch Set: diff -r ada18e5ef51f https://code.google.com/p/go/
Right Patch Set: diff -r 3fdde99ed034 https://code.google.com/p/go/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/gc/doc.go
src/cmd/gc/go.h
src/cmd/gc/lex.c
src/cmd/go/build.go
src/cmd/go/pkg.go
src/cmd/go/run.go
src/cmd/go/test.bash
src/cmd/go/test.go
src/cmd/go/testdata/local/easysub/main.go
src/cmd/go/testdata/testimport/p.go
src/cmd/go/testdata/testimport/p1/p1.go
src/cmd/go/testdata/testimport/p2/p2.go
src/cmd/go/testdata/testimport/p_test.go
src/cmd/go/testdata/testimport/x_test.go
LEFT RIGHT
(Both sides are equal) 1 #!/bin/bash 1 #!/bin/bash
2 # Copyright 2012 The Go Authors. All rights reserved. 2 # Copyright 2012 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 go build -o testgo 7 go build -o testgo
8 8
9 ok=true 9 ok=true
10 10
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
66 echo "go test ./testdata/testimport/*.go failed" 66 echo "go test ./testdata/testimport/*.go failed"
67 ok=false 67 ok=false
68 fi 68 fi
69 69
70 if $ok; then 70 if $ok; then
71 echo PASS 71 echo PASS
72 else 72 else
73 echo FAIL 73 echo FAIL
74 exit 1 74 exit 1
75 fi 75 fi
LEFT RIGHT