summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T10019.script
Commit message (Collapse)AuthorAgeFilesLines
* Fix some validation errors.Richard Eisenberg2015-07-041-8/+1
| | | | | | | | | | | | | | | | | | | | Summary: This fixes test cases T10019 and T10534 The patch for T10019 should be back-ported to master as well. Posting via Phab as a way to distribute a patch against the ghc-7.10 branch, which I don't have push access to. Test Plan: validate Reviewers: austin, bgamari Reviewed By: bgamari Subscribers: thomie, bgamari, mzero Differential Revision: https://phabricator.haskell.org/D1036
* Modify test th/T10019 to wobble lessSimon Peyton Jones2015-03-201-1/+8
| | | | | | | The TH output contains uniques which change too much. So I took the length of the string instead. Crude, perhaps too crude, but it'll still show up most significant output changes
* nameIsLocalOrFrom should include interactive modulesSimon Peyton Jones2015-02-111-0/+4
The provoking cause was Trac #10019, but it revealed that nameIsLocalOrFrom should really include all interactive modules (ones from the 'interactive' package). Previously we had some ad-hoc 'isInteractiveModule' tests with some (but not all) the calls to nameIsLocalOrFrom. See the new comments with Name.nameIsLocalOrFrom.