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

Delta Between Two Patch Sets: test/method4.dir/prog.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/method4.dir/method4a.go ('k') | test/run.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/method4a.go && $G $D/$F.go && $L $F.$A && ./$A.out
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 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 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 method expressions with arguments. 5 // Test method expressions with arguments.
11 6
12 package main 7 package main
13 8
14 import "./method4a" 9 import "./method4a"
15 10
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 eq(g3(mt1, a, 38), 48) 95 eq(g3(mt1, a, 38), 48)
101 eq(g3(mt2, a, 39), 49) 96 eq(g3(mt2, a, 39), 49)
102 97
103 eq(method4a.I2.Sum(mt1, a, 40), 50) 98 eq(method4a.I2.Sum(mt1, a, 40), 50)
104 eq(method4a.I2.Sum(mt2, a, 41), 51) 99 eq(method4a.I2.Sum(mt2, a, 41), 51)
105 100
106 g4 := method4a.I2.Sum 101 g4 := method4a.I2.Sum
107 eq(g4(mt1, a, 42), 52) 102 eq(g4(mt1, a, 42), 52)
108 eq(g4(mt2, a, 43), 53) 103 eq(g4(mt2, a, 43), 53)
109 } 104 }
LEFTRIGHT

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