From 1c460ffc925e89a72add52c6fc53755e988b3b4a Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 23 Jul 2015 15:52:57 -0700 Subject: [PATCH] go/types: run tests that were excluded by mistake Backport of https://go-review.googlesource.com/#/c/12517/. TBR=adonovan Change-Id: I6b010c977c9a770a27c3fa1271c07c38d9b84185 Reviewed-on: https://go-review.googlesource.com/12601 Reviewed-by: Robert Griesemer --- go/types/stdlib_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/types/stdlib_test.go b/go/types/stdlib_test.go index 02d00dfa770..d6aa82ac537 100644 --- a/go/types/stdlib_test.go +++ b/go/types/stdlib_test.go @@ -122,7 +122,7 @@ func TestStdTest(t *testing.T) { // test/recover4.go is only built for Linux and Darwin. // TODO(gri) Remove once tests consider +build tags (issue 10370). - if runtime.GOOS != "linux" || runtime.GOOS != "darwin" { + if runtime.GOOS != "linux" && runtime.GOOS != "darwin" { return }