diff options
author | Alp Mestanogullari <alp@well-typed.com> | 2018-05-13 18:38:18 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-05-13 22:22:43 -0400 |
commit | ca3d3039386b145ae2835ca563b4c5a3497c25c9 (patch) | |
tree | 1c72f0eb51238d512de1e9f5989d7c3fc5ade1b9 /testsuite/tests/driver | |
parent | 8f3c149d94814e4f278b08c562f06fc257eb3c43 (diff) | |
download | haskell-ca3d3039386b145ae2835ca563b4c5a3497c25c9.tar.gz |
Fix another batch of `./validate --slow` failures
A rather detailed summary can be found at:
https://gist.github.com/alpmestan/be82b47bb88b7dc9ff84105af9b1bb82
This doesn't fix all expectation mismatches yet, but we're down to about
20 mismatches with my previous patch and this one, as opposed to ~150
when I got started.
Test Plan: ./validate --slow
Reviewers: bgamari, erikd, simonmar
Reviewed By: simonmar
Subscribers: thomie, carter
GHC Trac Issues: #14890
Differential Revision: https://phabricator.haskell.org/D4636
Diffstat (limited to 'testsuite/tests/driver')
-rw-r--r-- | testsuite/tests/driver/T3007/all.T | 5 | ||||
-rw-r--r-- | testsuite/tests/driver/all.T | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/testsuite/tests/driver/T3007/all.T b/testsuite/tests/driver/T3007/all.T index bd9046cdd8..803357ba02 100644 --- a/testsuite/tests/driver/T3007/all.T +++ b/testsuite/tests/driver/T3007/all.T @@ -1 +1,4 @@ -test('T3007', [extra_files(['A/', 'B/'])], run_command, ['$MAKE -s --no-print-directory T3007']) +test('T3007', + extra_files(['A/', 'B/']), + run_command, + ['$MAKE -s --no-print-directory T3007']) diff --git a/testsuite/tests/driver/all.T b/testsuite/tests/driver/all.T index ba177c1ef7..714b6c4a1a 100644 --- a/testsuite/tests/driver/all.T +++ b/testsuite/tests/driver/all.T @@ -273,4 +273,8 @@ test('json', normal, compile_fail, ['-ddump-json']) test('json2', normal, compile, ['-ddump-types -ddump-json']) test('T13604', [], run_command, ['$MAKE -s --no-print-directory T13604']) test('T13604a', [], run_command, ['$MAKE -s --no-print-directory T13604a']) -test('inline-check', normal, compile, ['-dinline-check foo -O -ddebug-output']) +# omitting hpc and profasm because they affect the +# inlining and unfoldings +test('inline-check', omit_ways(['hpc', 'profasm']) + , compile + , ['-dinline-check foo -O -ddebug-output']) |