summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ExecutionEngine/Orc
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2015-10-28 03:12:51 +0000
committerLang Hames <lhames@gmail.com>2015-10-28 03:12:51 +0000
commit310a5bacb2303b81c922098a2853b8081cc44fd4 (patch)
treeb4e0b8804902ee4e0339838c294578e7a56a8daa /llvm/unittests/ExecutionEngine/Orc
parent130a7c41526921fde7562d0526e860ade0eb6d78 (diff)
downloadbcm5719-llvm-310a5bacb2303b81c922098a2853b8081cc44fd4.tar.gz
bcm5719-llvm-310a5bacb2303b81c922098a2853b8081cc44fd4.zip
[Orc] Disable Orc C API unit tests on non-Darwin while I investigate more
builder failures. llvm-svn: 251484
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
index 18e3874acaf..d7389492291 100644
--- a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
+++ b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
@@ -46,7 +46,7 @@ public:
const Triple& TT = TM->getTargetTriple();
- if (TT.getArch() == Triple::x86_64)
+ if (TT.getArch() == Triple::x86_64 && TT.isOSDarwin())
return std::move(TM);
return nullptr;
OpenPOWER on IntegriCloud