Commit 98c208ee authored by Rob Pike's avatar Rob Pike

bug026 and bug060 are fixed. update.

R=rsc
DELTA=87  (37 added, 50 deleted, 0 changed)
OCL=16498
CL=16507
parent f464beb6
...@@ -5,9 +5,6 @@ BUG: errchk: func3.go: missing expected error message on line 14: 'type' ...@@ -5,9 +5,6 @@ BUG: errchk: func3.go: missing expected error message on line 14: 'type'
=========== ./helloworld.go =========== ./helloworld.go
hello, world hello, world
=========== ./map.go
skipping increment test until bug060 is fixed
=========== ./peano.go =========== ./peano.go
0! = 1 0! = 1
1! = 1 1! = 1
...@@ -56,20 +53,12 @@ PASS ...@@ -56,20 +53,12 @@ PASS
bugs/bug020.go:7: type of a structure field cannot be an open array bugs/bug020.go:7: type of a structure field cannot be an open array
BUG should compile BUG should compile
=========== bugs/bug026.go
sys·printnl: main·sigt_I: not defined
BUG: known to fail incorrectly
=========== bugs/bug032.go =========== bugs/bug032.go
BUG: compilation succeeds incorrectly BUG: compilation succeeds incorrectly
=========== bugs/bug041.go =========== bugs/bug041.go
BUG: compilation succeeds incorrectly BUG: compilation succeeds incorrectly
=========== bugs/bug060.go
map does not increment
BUG: map increment
=========== bugs/bug064.go =========== bugs/bug064.go
bugs/bug064.go:15: illegal types for operand: CALL bugs/bug064.go:15: illegal types for operand: CALL
int32 int32
......
...@@ -412,8 +412,6 @@ func main() { ...@@ -412,8 +412,6 @@ func main() {
} }
} }
print("skipping increment test until bug060 is fixed\n");
return;
// tests for structured map element updates // tests for structured map element updates
for i := 0; i < count; i++ { for i := 0; i < count; i++ {
......
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