diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-02-07 21:37:15 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-02-07 21:37:15 +0000 |
commit | effc8af9fc285321c9064e1d691a125f5568fdd8 (patch) | |
tree | d26b2c91fccc8315df44d287b8723061d32cbe93 /testsuite/tests/rts | |
parent | de7e357c5e024a8486bba37a6d4b72ffe7873a4c (diff) | |
download | haskell-effc8af9fc285321c9064e1d691a125f5568fdd8.tar.gz |
Pass the test name to the test options
This allows them to give framework failures.
I also had to change how setTestOpts works. Now, rather than applying
the options to the directory's "default options", it just stores the
options to be applied for each test (i.e. once we know the test name).
Diffstat (limited to 'testsuite/tests/rts')
-rw-r--r-- | testsuite/tests/rts/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 2c0ae61800..05510e9ad1 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -115,7 +115,7 @@ test('return_mem_to_os', normal, compile_and_run, ['']) test('T4850', normal, run_command, ['$MAKE -s --no-print-directory T4850']) -def config_T5250(opts): +def config_T5250(name, opts): if not (config.arch in ['i386','x86_64']): opts.skip = 1; |