summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Bollmann <bollmann@seas.upenn.edu>2016-03-24 10:11:46 +0100
committerBen Gamari <ben@smart-cactus.org>2016-03-24 10:53:27 +0100
commite57b9ffee858278bf1ef8ed0754346685334b9ba (patch)
tree657c765fd32b4dd743d4f3e6d5468ec7d29af680
parentdb9e4eb4e3fe916df7a69da1b211083ad6068aff (diff)
downloadhaskell-e57b9ffee858278bf1ef8ed0754346685334b9ba.tar.gz
Fix regression test for #11145.
Test Plan: ./validate Reviewers: austin, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2032 GHC Trac Issues: #11145
-rw-r--r--testsuite/tests/th/T11145.stderr2
-rw-r--r--testsuite/tests/th/all.T2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/th/T11145.stderr b/testsuite/tests/th/T11145.stderr
index 98e518cbbf..731349d908 100644
--- a/testsuite/tests/th/T11145.stderr
+++ b/testsuite/tests/th/T11145.stderr
@@ -3,6 +3,6 @@ T11145.hs:8:1: error:
• Data constructor ‘MkFuggle’ returns type ‘Fuggle
Int (Maybe Bool)’
instead of an instance of its parent type ‘Fuggle
- Int (Maybe (a_a4MU, b_a4MV))’
+ Int (Maybe (a, b))’
• In the definition of data constructor ‘MkFuggle’
In the data instance declaration for ‘Fuggle’
diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T
index 7e9f25dc59..3939880008 100644
--- a/testsuite/tests/th/all.T
+++ b/testsuite/tests/th/all.T
@@ -396,4 +396,4 @@ test('TH_finalizer', normal, compile, ['-v0'])
test('T10603', normal, compile, ['-ddump-splices -dsuppress-uniques'])
test('T11452', normal, compile_fail, ['-v0'])
test('T9022', normal, compile_and_run, ['-v0'])
-test('T11145', normal, compile_fail, ['-v0']) \ No newline at end of file
+test('T11145', normal, compile_fail, ['-v0 -dsuppress-uniques'])