summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-07-08 11:30:20 -0700
committerRob Pike <r@golang.org>2008-07-08 11:30:20 -0700
commit15fb8aa10a824f36187d0b7874c765b797373d8b (patch)
treec683724a9fc6ad2017c65345781507b3f38ead92
parent1ff917e05c382add1d4dd3060d3c1301692932ba (diff)
downloadgolang-15fb8aa10a824f36187d0b7874c765b797373d8b.tar.gz
test update. some tests now run; no change to output
SVN=126328
-rw-r--r--test/ken/mfunc.go1
-rw-r--r--test/ken/rob1.go2
-rw-r--r--test/ken/robliteral.go2
3 files changed, 2 insertions, 3 deletions
diff --git a/test/ken/mfunc.go b/test/ken/mfunc.go
index 5a4e79534..032f75679 100644
--- a/test/ken/mfunc.go
+++ b/test/ken/mfunc.go
@@ -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);
diff --git a/test/ken/rob1.go b/test/ken/rob1.go
index 74405e5e8..eeae961d2 100644
--- a/test/ken/rob1.go
+++ b/test/ken/rob1.go
@@ -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();
diff --git a/test/ken/robliteral.go b/test/ken/robliteral.go
index da4137746..2a21a6bee 100644
--- a/test/ken/robliteral.go
+++ b/test/ken/robliteral.go
@@ -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