We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7111f28 commit df15ed4Copy full SHA for df15ed4
clang/test/Interpreter/lit.local.cfg
@@ -1,5 +1,6 @@
1
-import sys
2
-
3
# clang-repl is not supported on AIX and zOS
4
-if "host-supports-jit" not in config.available_features or sys.platform == "aix" or sys.platform == "zos":
+unsupported_platforms = [ "system-aix", "system-zos" ]
+
+if "host-supports-jit" not in config.available_features or \
5
+ any(up in config.available_features for up in unsupported_platforms):
6
config.unsupported = True
0 commit comments