From 76ac7db9b36a0ffbc96ea8c4b53a2c9689f74cb1 Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Tue, 16 Jul 2013 12:18:00 -0400 Subject: test: invert incorrect condition. R=gri CC=golang-dev https://codereview.appspot.com/11359043 --- test/cmp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/cmp.go') diff --git a/test/cmp.go b/test/cmp.go index 7183f0207..73de502f3 100644 --- a/test/cmp.go +++ b/test/cmp.go @@ -43,8 +43,8 @@ func main() { var d string = "hel" // try to get different pointer d = d + "lo" - // exp/ssa/interp can't handle unsafe.Pointer. - if os.Getenv("GOSSAINTERP") != "" { + // go.tools/ssa/interp can't handle unsafe.Pointer. + if os.Getenv("GOSSAINTERP") == "" { if stringptr(c) == stringptr(d) { panic("compiler too smart -- got same string") } -- cgit v1.2.1