summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/elliptic/elliptic_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/elliptic/elliptic_test.go')
-rw-r--r--src/pkg/crypto/elliptic/elliptic_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pkg/crypto/elliptic/elliptic_test.go b/src/pkg/crypto/elliptic/elliptic_test.go
index 6ae6fb96d..02083a986 100644
--- a/src/pkg/crypto/elliptic/elliptic_test.go
+++ b/src/pkg/crypto/elliptic/elliptic_test.go
@@ -297,6 +297,9 @@ func TestBaseMult(t *testing.T) {
if fmt.Sprintf("%x", x) != e.x || fmt.Sprintf("%x", y) != e.y {
t.Errorf("%d: bad output for k=%s: got (%x, %s), want (%s, %s)", i, e.k, x, y, e.x, e.y)
}
+ if testing.Short() && i > 5 {
+ break
+ }
}
}