diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2017-08-17 10:31:26 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-08-17 16:42:55 -0400 |
commit | 038534755b1040470453e82531d698a952d4dd05 (patch) | |
tree | d1113fea0bb889d4adf516ba36edcae01f4791bf /testsuite/tests/programs | |
parent | dc42c0dc91e29ca0eba3ee299f5feba03e401483 (diff) | |
download | haskell-038534755b1040470453e82531d698a952d4dd05.tar.gz |
Remove unneeded reqlibs for mtl and parsec in the GHC testsuite
Now that `mtl` and `parsec` are boot libraries, there's no need to
qualify various tests in the testsuite with `reqlib('mtl')` or
`reqlib('parsec')`.
Test Plan: make test TEST="T4809 tcfail126 T4355 tc232 tc223 tc220
tc217 tc183 T5303 DoParamM qq005 qq006 galois_raytrace T1074 mod133
T3787 T4316 prog011 drvfail006 drvfail008"
Reviewers: bgamari, austin
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3855
Diffstat (limited to 'testsuite/tests/programs')
-rw-r--r-- | testsuite/tests/programs/galois_raytrace/test.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/programs/galois_raytrace/test.T b/testsuite/tests/programs/galois_raytrace/test.T index 6f65800cb2..743cbbfbe8 100644 --- a/testsuite/tests/programs/galois_raytrace/test.T +++ b/testsuite/tests/programs/galois_raytrace/test.T @@ -4,5 +4,5 @@ if config.platform.startswith('i386-') and \ setTestOpts(expect_fail_for(['hpc','optasm','profasm','threaded2','profthreaded'])) test('galois_raytrace', [extra_files(['CSG.hs', 'Construct.hs', 'Data.hs', 'Eval.hs', 'Geometry.hs', 'Illumination.hs', 'Intersections.hs', 'Interval.hs', 'Main.hs', 'Misc.hs', 'Parse.hs', 'Primitives.hs', 'Surface.hs', 'galois.gml']), - when(fast(), skip), reqlib('parsec')], + when(fast(), skip)], multimod_compile_and_run, ['Main', '-package parsec']) |