aboutsummaryrefslogtreecommitdiff
path: root/tcl_test.go
diff options
context:
space:
mode:
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)