Delta Between Two Patch Sets: test/fixedbugs/bug382.dir/prog.go
Issue 6609051 :
code review 6609051: test: convert more tests to rundir/compiledir conventions (Closed)
Left Patch Set:
Right Patch Set: diff -r 73c6ec305dcb https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
test/fixedbugs/bug191.go
test/fixedbugs/bug191.out
test/fixedbugs/bug191.dir/main.go
test/fixedbugs/bug382.go
test/fixedbugs/bug382.dir/prog.go
test/fixedbugs/bug424.go
test/fixedbugs/bug424.dir/main.go
test/import2.go
test/import2.dir/import2.go
test/import2.dir/import3.go
test/import4.go
test/import4.dir/empty.go
test/import4.dir/import4.go
test/method4.go
test/method4.dir/method4a.go
test/method4.dir/prog.go
test/run.go
LEFT RIGHT
(no file at all) 1 // $G $D/$F.dir/pkg.go && $G $D/$F.go || echo "Bug 382"
2
3 // NOTE: This test is not run by 'run.go' and so not run by all.bash.
4 // To run this test you must use the ./run shell script.
5
6 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
7 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
8 // license that can be found in the LICENSE file 3 // license that can be found in the LICENSE file
9 4
10 // Issue 2529 5 // Issue 2529
11 6
12 package main 7 package main
8
13 import "./pkg" 9 import "./pkg"
14 10
15 var x = pkg.E 11 var x = pkg.E
16 12
17 var fo = struct { F pkg.T}{F: x} 13 var fo = struct { F pkg.T }{F: x}
LEFT RIGHT