diff options
author | Jan Mercl <0xjnml@gmail.com> | 2020-09-13 15:31:23 +0200 |
---|---|---|
committer | Jan Mercl <0xjnml@gmail.com> | 2020-09-13 15:31:23 +0200 |
commit | f228816300a40a6f8cd90293a629fffad952c6ce (patch) | |
tree | d04998fba318c25f03d98220e225678a061326e8 /tcl_test.go | |
parent | 1a09ae480f6b16fb7690999ed66be5c58981c9d0 (diff) |
support linux/arm{,64}v1.7.0
Diffstat (limited to 'tcl_test.go')
-rw-r--r-- | tcl_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tcl_test.go b/tcl_test.go index 1debc3c..ced057d 100644 --- a/tcl_test.go +++ b/tcl_test.go @@ -20,7 +20,7 @@ import ( var ( oMaxError = flag.Uint("maxerror", 0, "argument of -maxerror passed to the Tcl test suite") - oStart = flag.String("start", "", "argument of -start passed to the Tcl test suite (--start=[$permutation:]$testfile)") + oStart = flag.String("start", "", "argument of -start passed to the Tcl test suite (-start=[$permutation:]$testfile)") oTclSuite = flag.String("suite", "full", "Tcl test suite [test-file] to run") oVerbose = flag.String("verbose", "0", "argument of -verbose passed to the Tcl test suite, must be set to a boolean (0, 1) or to \"file\"") ) @@ -28,7 +28,7 @@ var ( func TestTclTest(t *testing.T) { blacklist := map[string]struct{}{} switch runtime.GOARCH { - case "386": + case "386", "arm": // # This test causes thrashing on machines with smaller amounts of // # memory. Make sure the host has at least 8GB available before running // # this test. |