aboutsummaryrefslogtreecommitdiff
path: root/go/ssa/interp/interp_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/ssa/interp/interp_test.go')
-rw-r--r--go/ssa/interp/interp_test.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/go/ssa/interp/interp_test.go b/go/ssa/interp/interp_test.go
index c914c6d..89e23bd 100644
--- a/go/ssa/interp/interp_test.go
+++ b/go/ssa/interp/interp_test.go
@@ -307,7 +307,7 @@ func TestTestdataFiles(t *testing.T) {
// TestGorootTest runs the interpreter on $GOROOT/test/*.go.
func TestGorootTest(t *testing.T) {
if testing.Short() {
- return // too slow (~30s)
+ t.Skip() // too slow (~30s)
}
var failures []string
@@ -327,6 +327,10 @@ func TestGorootTest(t *testing.T) {
// TestTestmainPackage runs the interpreter on a synthetic "testmain" package.
func TestTestmainPackage(t *testing.T) {
+ if testing.Short() {
+ t.Skip() // too slow on some platforms
+ }
+
success := func(exitcode int, output string) error {
if exitcode == 0 {
return fmt.Errorf("unexpected success")