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

Delta Between Two Patch Sets: test/import2.dir/import3.go

Issue 6609051: code review 6609051: test: convert more tests to rundir/compiledir conventions (Closed)
Left Patch Set: Created 12 years, 6 months ago
Right Patch Set: diff -r 73c6ec305dcb https://go.googlecode.com/hg/ Created 12 years, 6 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 | « test/import2.dir/import2.go ('k') | test/import4.go » ('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 // $G $D/import2.go && $G $D/$F.go
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 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 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 // Test that all the types from import2.go made it 5 // Test that all the types from import2.go made it
11 // intact and with the same meaning, by assigning to or using them. 6 // intact and with the same meaning, by assigning to or using them.
12 7
13 package main 8 package main
14 9
15 import "./import2" 10 import "./import2"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 43
49 p.R8 = (<- chan <- chan chan int)(nil) 44 p.R8 = (<- chan <- chan chan int)(nil)
50 p.R9 = (<- chan chan <- chan int)(nil) 45 p.R9 = (<- chan chan <- chan int)(nil)
51 p.R10 = (chan <- <- chan chan int)(nil) 46 p.R10 = (chan <- <- chan chan int)(nil)
52 p.R11 = (chan <- chan <- chan int)(nil) 47 p.R11 = (chan <- chan <- chan int)(nil)
53 p.R12 = (chan chan <- <- chan int)(nil) 48 p.R12 = (chan chan <- <- chan int)(nil)
54 p.R13 = (chan chan <- chan <- int)(nil) 49 p.R13 = (chan chan <- chan <- int)(nil)
55 50
56 } 51 }
57 52
LEFTRIGHT

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