diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-07-04 11:17:04 -0400 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2019-07-18 20:55:11 -0400 |
commit | e8adffb528f65749b5648c44ab711ef9aec4c69a (patch) | |
tree | 9267b643d7c605fa318f4d436c4d832b7b6ee201 /testsuite/tests/polykinds | |
parent | 3cec2af64bff0c89aa34dd95a75ee752f25135d5 (diff) | |
download | haskell-e8adffb528f65749b5648c44ab711ef9aec4c69a.tar.gz |
testsuite: Set -dinitial-unique when reversing uniques
Otherwise the unique counter starts at 0, causing us to immediately
underflow.
Diffstat (limited to 'testsuite/tests/polykinds')
-rw-r--r-- | testsuite/tests/polykinds/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/polykinds/all.T b/testsuite/tests/polykinds/all.T index 6238fbe770..6345b228e4 100644 --- a/testsuite/tests/polykinds/all.T +++ b/testsuite/tests/polykinds/all.T @@ -137,7 +137,7 @@ test('T11480b', normal, compile, ['']) test('T11523', normal, compile, ['']) test('T11520', normal, compile_fail, ['']) test('T11516', normal, compile_fail, ['']) -test('T11362', normal, compile, ['-dunique-increment=-1']) +test('T11362', normal, compile, ['-dunique-increment=-1 -dinitial-unique=16777215']) # -dunique-increment=-1 doesn't work inside the file test('T11399', normal, compile_fail, ['']) test('T11611', normal, compile_fail, ['']) |