Per https://github.com/gopherjs/gopherjs/pull/798#issuecomment-383249298: > And actually both on my configuration and on circleci the test runs well (so it seems like it could be re-enabled): ``` === RUN TestOnePassCutoff --- PASS: TestOnePassCutoff (0.08s) ``` "It" here is a reference to [`regexp`'s `TestOnePassCutoff`](https://github.com/gopherjs/gopherjs/blob/fcfa75a46cca3b1ed8b2c75c4f6f0a88df581baa/compiler/natives/src/regexp/regexp_test.go#L9-L11) which is skipped on the basis it has in the past exceed the call stack size. Following https://github.com/gopherjs/gopherjs/pull/687, stack size issues should be greatly reduced and/or have disappeared entirely. Hence we should now review whether tests like `regexp`'s `TestOnePassCutoff` can be re-enabled.