]> Cypherpunks repositories - gostls13.git/commitdiff
test update. some tests now run; no change to output
authorRob Pike <r@golang.org>
Tue, 8 Jul 2008 18:30:20 +0000 (11:30 -0700)
committerRob Pike <r@golang.org>
Tue, 8 Jul 2008 18:30:20 +0000 (11:30 -0700)
SVN=126328

test/ken/mfunc.go
test/ken/rob1.go
test/ken/robliteral.go

index 5a4e795340fd45fae96ff45e0da2dcc8551064be..032f75679ea5c7eb6b46b30659e7262dca2bcf92 100644 (file)
@@ -4,7 +4,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-
 package main
 
 func   simple(ia,ib,ic int) (oa,ob int);
index 74405e5e8d6ba8328206e34b30e42a31053eb7d5..eeae961d24c42ea9b597a941eac1aef62f4a20eb 100644 (file)
@@ -74,7 +74,7 @@ main()
        for i := 0; i < 10; i = i + 1 {
                integer := new(Integer);
                integer.Init_BUG(i);
-               list.Insert(integer);
+               list.Insert(integer); //BUG: this is the failing line
        }
 
        list.Print();
index da41377462d958fe3d676f1e1cca2c50e8a09791..2a21a6beeac7ab7de52f567b576443bb57484a6d 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // 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