diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2016-10-18 22:17:10 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-10-18 22:17:10 -0400 |
commit | 3866481f228b28687c4021d9deb16e2138fdc008 (patch) | |
tree | a0fb1dcfba56022d434bd2f7a7fd2e161c7b118f /testsuite/tests/cabal/T12733/Setup.hs | |
parent | a3bc93e58f917c0e03aed1a08fe56bddb16ca773 (diff) | |
download | haskell-3866481f228b28687c4021d9deb16e2138fdc008.tar.gz |
Compute export hash based on ALL transitive orphan modules.
Previously we pruned out orphan modules from external packages but this
was wrong. Fixes #12733 (which has more discussion.)
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Test Plan: validate
Reviewers: simonpj, bgamari, austin
Reviewed By: simonpj
Subscribers: simonpj, thomie
Differential Revision: https://phabricator.haskell.org/D2610
GHC Trac Issues: #12733
Diffstat (limited to 'testsuite/tests/cabal/T12733/Setup.hs')
-rw-r--r-- | testsuite/tests/cabal/T12733/Setup.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/tests/cabal/T12733/Setup.hs b/testsuite/tests/cabal/T12733/Setup.hs new file mode 100644 index 0000000000..9a994af677 --- /dev/null +++ b/testsuite/tests/cabal/T12733/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain |