diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-04-28 17:08:53 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-04-28 20:16:20 +0200 |
commit | b0569e881f66c3e987bc1108ad771a706399f5ff (patch) | |
tree | 9248fe5a08c1b8c488201db1f502ddd0a3e5f2e7 /testsuite/tests/programs | |
parent | 9dc34d31eb50d5aeb93d24cf9a3197f27ecb1687 (diff) | |
download | haskell-b0569e881f66c3e987bc1108ad771a706399f5ff.tar.gz |
Testsuite: benign test fixes
Diffstat (limited to 'testsuite/tests/programs')
-rw-r--r-- | testsuite/tests/programs/okeefe_neural/test.T | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/testsuite/tests/programs/okeefe_neural/test.T b/testsuite/tests/programs/okeefe_neural/test.T index e905ec0b99..e7e1f78c01 100644 --- a/testsuite/tests/programs/okeefe_neural/test.T +++ b/testsuite/tests/programs/okeefe_neural/test.T @@ -1,6 +1,12 @@ # this one causes the compiler to run out of heap in the simplifier +# TODO. What's the purpose of this test? If you give it 100Mb of heap, it +# compiles fine (though it takes a while). Is that too much? +# Does the fact that this test is marked expect_fail (instead of expect_broken) +# mean anything? +# Is it necessary to also run the resulting program? It doesn't seem to ever +# complete, at least not in a few minutes. What is the expected output? def set_opts( name, opts ): opts.expect = 'fail' @@ -9,4 +15,4 @@ test('okeefe_neural', set_opts, extra_clean(['Main.hi'])], multimod_compile_and_run, - ['Main', '-package lang +RTS -M64m -RTS']) + ['Main', '+RTS -M64m -RTS']) |