summaryrefslogtreecommitdiff
path: root/current/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/lit.local.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'current/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/lit.local.cfg')
-rw-r--r--current/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/lit.local.cfg6
1 files changed, 6 insertions, 0 deletions
diff --git a/current/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/lit.local.cfg b/current/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/lit.local.cfg
new file mode 100644
index 000000000..1b2c20c79
--- /dev/null
+++ b/current/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/lit.local.cfg
@@ -0,0 +1,6 @@
+def is_arm_linux_eabi(triple):
+ return ('arm' in triple) and ('linux' in triple) and ('eabi' in triple)
+
+is_native = config.root.host_triple == config.root.target_triple
+if not is_native or not is_arm_linux_eabi(config.root.host_triple):
+ config.unsupported = True