Commit cc352e5c authored by Ian Lance Taylor's avatar Ian Lance Taylor

The DejaGNU testsuite harness used by the gccgo testsuite is

broken if you give it something which matches everything--the
.* swallows all the error messages.  Recognize some reasonable
error text directly.

R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=20564
CL=20595
parent 8aeb8647
...@@ -7,6 +7,6 @@ ...@@ -7,6 +7,6 @@
package main package main
func main() { func main() {
var x int64 = 0; var x int64 = 0;
println(x != nil); // ERROR ".*" println(x != nil); // ERROR "illegal|incompatible"
println(0 != nil); // ERROR ".*" println(0 != nil); // ERROR "illegal|incompatible"
} }
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