diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-11-29 16:12:59 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-12-07 06:27:47 -0500 |
commit | 7d2283b9788fd5a724b41c0902067890059de3ff (patch) | |
tree | 0aab3b160b59007c148e7076753433c9e030697d /testsuite/tests/ghc-api/all.T | |
parent | 0fe45d4346de72d5cf87a03c1eeedea2e2521a5b (diff) | |
download | haskell-7d2283b9788fd5a724b41c0902067890059de3ff.tar.gz |
compiler: Eliminate accidental loop in GHC.SysTools.BaseDir
As noted in #20757, `GHC.SysTools.BaseDir.findToolDir` previously
contained an loop, which would be triggered in the case that the search
failed.
Closes #20757.
Diffstat (limited to 'testsuite/tests/ghc-api/all.T')
-rw-r--r-- | testsuite/tests/ghc-api/all.T | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/tests/ghc-api/all.T b/testsuite/tests/ghc-api/all.T index 8eecd3c799..4d62a57682 100644 --- a/testsuite/tests/ghc-api/all.T +++ b/testsuite/tests/ghc-api/all.T @@ -30,5 +30,8 @@ test('T18522-dbg-ppr', compile_and_run, ['-package ghc']) test('T19156', extra_run_opts('"' + config.libdir + '"'), - compile_and_run, - ['-package ghc']) + compile_and_run, + ['-package ghc']) +test('T20757', [unless(opsys('mingw32'), skip), exit_code(1)], + compile_and_run, + ['-package ghc']) |