diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-31 23:42:23 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-31 23:42:23 +0000 |
commit | d3bafe3e41aab45def514440d72fe43b2072c56d (patch) | |
tree | 97df19fa92985d2e03020e1e5383cbc616e87916 /llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h | |
parent | 24bbfed22185c92ca00c9f39a8bdb5214d90589c (diff) | |
download | bcm5719-llvm-d3bafe3e41aab45def514440d72fe43b2072c56d.tar.gz bcm5719-llvm-d3bafe3e41aab45def514440d72fe43b2072c56d.zip |
MCJIT: ensure that cygwin is identified properly
Cygwin is now a proper environment rather than an OS. This updates the MCJIT
tests to avoid execution on Cygwin. This fixes native cygwin tests.
llvm-svn: 205266
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h b/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h index b2cb3bbef6e..25de312e0e8 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h @@ -304,6 +304,8 @@ protected: // should be kept in sync. UnsupportedOSs.push_back(Triple::Cygwin); UnsupportedOSs.push_back(Triple::Darwin); + + UnsupportedEnvironments.push_back(Triple::Cygnus); } void createJIT(Module *M) { |