Commit c38391ad authored by Rob Pike's avatar Rob Pike

test update. some tests now run; no change to output

SVN=126328
parent 6db99de6
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
package main package main
func simple(ia,ib,ic int) (oa,ob int); func simple(ia,ib,ic int) (oa,ob int);
......
...@@ -74,7 +74,7 @@ main() ...@@ -74,7 +74,7 @@ main()
for i := 0; i < 10; i = i + 1 { for i := 0; i < 10; i = i + 1 {
integer := new(Integer); integer := new(Integer);
integer.Init_BUG(i); integer.Init_BUG(i);
list.Insert(integer); list.Insert(integer); //BUG: this is the failing line
} }
list.Print(); list.Print();
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// $G $D/$F.go || echo BUG: known to fail incorrectly // $G $D/$F.go && $L $F.$A && ./$A.out
package main package main
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment