Skip to content

Commit 7cbe551

Browse files
committed
enable tests
1 parent 9f99446 commit 7cbe551

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler-rt/test/asan/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def build_invocation(compile_flags, with_lto=False):
323323
config.substitutions.append(("%pie", "-pie"))
324324

325325
# Only run the tests on supported OSs.
326-
if config.host_os not in ["Linux", "Darwin", "FreeBSD", "SunOS", "Windows", "NetBSD"]:
326+
if config.host_os not in ["Linux", "Darwin", "FreeBSD", "SunOS", "Windows", "NetBSD", "AIX"]:
327327
config.unsupported = True
328328

329329
if not config.parallelism_group:

compiler-rt/test/sanitizer_common/lit.common.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def build_invocation(compile_flags):
9292

9393
config.suffixes = [".c", ".cpp"]
9494

95-
if config.host_os not in ["Linux", "Darwin", "NetBSD", "FreeBSD", "SunOS"]:
95+
if config.host_os not in ["Linux", "Darwin", "NetBSD", "FreeBSD", "SunOS", "AIX"]:
9696
config.unsupported = True
9797

9898
if not config.parallelism_group:

0 commit comments

Comments
 (0)