diff options
Diffstat (limited to 'testsuite/driver/testlib.py')
-rw-r--r-- | testsuite/driver/testlib.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index 9d6fc27b95..a6ff229c06 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -501,6 +501,11 @@ def doing_ghci() -> bool: def ghc_dynamic() -> bool: return config.ghc_dynamic +# Symbols have a leading underscore +def leading_underscore() -> bool: + return config.leading_underscore + + def fast() -> bool: return config.speed == 2 |