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/driver | |
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/driver')
-rw-r--r-- | testsuite/driver/extra_files.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/driver/extra_files.py b/testsuite/driver/extra_files.py index c360537c3a..eb0aa27ca2 100644 --- a/testsuite/driver/extra_files.py +++ b/testsuite/driver/extra_files.py @@ -86,6 +86,7 @@ extra_src_files = { 'T12062': ['A.hs', 'A.hs-boot', 'C.hs'], 'T12035j': ['T12035.hs', 'T12035a.hs', 'T12035.hs-boot'], 'T12485': ['a.pkg', 'b.pkg', 'Main.hs'], + 'T12733': ['p/', 'q/', 'Setup.hs'], 'T1372': ['p1/', 'p2/'], 'T1407': ['A.c'], 'T1959': ['B.hs', 'C.hs', 'D.hs', 'E1.hs', 'E2.hs'], |