aboutsummaryrefslogtreecommitdiff
path: root/tcl_test.go
diff options
context:
space:
mode:
authorJan Mercl <0xjnml@gmail.com>2020-09-08 13:28:55 +0200
committerJan Mercl <0xjnml@gmail.com>2020-09-08 13:28:55 +0200
commit0d7a76444703f3275f151543189c1ee16326e6c2 (patch)
treecae2e524724c6f029b768b579427d1807a80b310 /tcl_test.go
parent3ff11fb2cf3597e31eb790772bc03fae46e6b029 (diff)
add linux/386 supportv1.6.0
Diffstat (limited to 'tcl_test.go')
-rw-r--r--tcl_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/tcl_test.go b/tcl_test.go
index 02e8843..1debc3c 100644
--- a/tcl_test.go
+++ b/tcl_test.go
@@ -27,6 +27,13 @@ var (
func TestTclTest(t *testing.T) {
blacklist := map[string]struct{}{}
+ switch runtime.GOARCH {
+ case "386":
+ // # This test causes thrashing on machines with smaller amounts of
+ // # memory. Make sure the host has at least 8GB available before running
+ // # this test.
+ blacklist["bigsort.test"] = struct{}{}
+ }
m, err := filepath.Glob(filepath.FromSlash("testdata/tcl/*"))
if err != nil {
t.Fatal(err)