diff options
author | Ben Gamari <ben@well-typed.com> | 2022-03-21 18:23:10 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-04-06 15:18:26 -0400 |
commit | 3c08a1981e99a24295fb229a0c71defe1f100386 (patch) | |
tree | 4892c7d032251c3959f7c2ae0c9242f5ec996ca9 /testsuite | |
parent | 12fcdef29a4f1762f6ed7c1a90f30ccd573b6227 (diff) | |
download | haskell-3c08a1981e99a24295fb229a0c71defe1f100386.tar.gz |
testsuite: Fix mk-big-obj
I'm a bit unclear on how this previously worked as it attempted
to build an executable without defining `main`.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/codeGen/should_compile/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/codeGen/should_compile/all.T b/testsuite/tests/codeGen/should_compile/all.T index 0d1521bc5a..a18451b98e 100644 --- a/testsuite/tests/codeGen/should_compile/all.T +++ b/testsuite/tests/codeGen/should_compile/all.T @@ -106,4 +106,4 @@ test('T15570', test('T18614', normal, compile, ['']) test('mk-big-obj', [unless(opsys('mingw32'), skip), pre_cmd('$PYTHON mk-big-obj.py > mk-big-obj.c')], - multimod_compile, ['mk-big-obj.c', '-v0']) + multimod_compile, ['mk-big-obj.c', '-c -v0 -no-hs-main']) |