diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-06-23 11:36:38 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-06-23 11:36:38 -0400 |
commit | e13edee31780704e521f764485a372766dd54daa (patch) | |
tree | 23017d90d70299f16d624a8b6b37d49b31e3c1dc | |
parent | 84cf095dc981ea21fcceddbb71463dd7844754ca (diff) | |
download | haskell-e13edee31780704e521f764485a372766dd54daa.tar.gz |
testsuite: Fix cabal01 test
The other-modules field listed things that weren't in fact modules,
causing this test to fail. See Cabal #4567.
Test Plan: Validate
Reviewers: hvr, austin
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3665
-rw-r--r-- | testsuite/tests/cabal/cabal01/test.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/cabal/cabal01/test.cabal b/testsuite/tests/cabal/cabal01/test.cabal index f49d8742da..fe66d70546 100644 --- a/testsuite/tests/cabal/cabal01/test.cabal +++ b/testsuite/tests/cabal/cabal01/test.cabal @@ -7,10 +7,10 @@ Extensions: ForeignFunctionInterface Build-depends: base>=1.0 Executable: testA -Other-Modules: A, MainA +Other-Modules: A Main-is: MainA.hs Extensions: OverlappingInstances Executable: testB -Other-Modules: B.A, B.MainB +Other-Modules: B.A Main-is: B/MainB.hs |