summaryrefslogtreecommitdiff
path: root/testsuite/driver
diff options
context:
space:
mode:
authorBen Gamari <ben@well-typed.com>2022-07-13 12:35:07 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-07-16 23:50:37 -0400
commit5b0ed8a8baaa32e03fee7af2c08656b462b62770 (patch)
treed431f5bd5866c3f6630281d30fd8c5635beccbec /testsuite/driver
parentfbb171100f1d5bd9e78cbb9072fb48d3422458a5 (diff)
downloadhaskell-5b0ed8a8baaa32e03fee7af2c08656b462b62770.tar.gz
testsuite: Use system-cxx-std-lib instead of config.stdcxx_impl
Diffstat (limited to 'testsuite/driver')
-rw-r--r--testsuite/driver/runtests.py2
-rw-r--r--testsuite/driver/testglobals.py3
2 files changed, 0 insertions, 5 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py
index a7abfdf3b9..8a0524248b 100644
--- a/testsuite/driver/runtests.py
+++ b/testsuite/driver/runtests.py
@@ -235,8 +235,6 @@ else:
print('WARNING: No UTF8 locale found.')
print('You may get some spurious test failures.')
-ghc_env['LIBCXX'] = config.stdcxx_impl
-
# https://stackoverflow.com/a/22254892/1308058
def supports_colors():
"""
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py
index 8a68ffd33e..7ccbaa3024 100644
--- a/testsuite/driver/testglobals.py
+++ b/testsuite/driver/testglobals.py
@@ -217,9 +217,6 @@ class TestConfig:
# The path specifies the file in which to write the dependencies
self.only_report_hadrian_deps = None # type: Optional[Path]
- # C++ standard library implementation
- self.stdcxx_impl = 'stdc++' # or c++ for LLVM/libc++ based platforms
-
def validate(self) -> None:
""" Check the TestConfig for self-consistency """
def assert_implies(a: bool, b: bool):