mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
ADTTests: [CMake] Exclude DenseMapTest.cpp and SmallVectorTest.cpp on MSVC9 due to its bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162918 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
54cbadc2e2
commit
d566c5ff5d
@ -2,7 +2,7 @@ set(LLVM_LINK_COMPONENTS
|
|||||||
Support
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(ADTTests
|
set(ADTSources
|
||||||
APFloatTest.cpp
|
APFloatTest.cpp
|
||||||
APIntTest.cpp
|
APIntTest.cpp
|
||||||
BitVectorTest.cpp
|
BitVectorTest.cpp
|
||||||
@ -31,3 +31,16 @@ add_llvm_unittest(ADTTests
|
|||||||
TwineTest.cpp
|
TwineTest.cpp
|
||||||
VariadicFunctionTest.cpp
|
VariadicFunctionTest.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# They cannot be compiled on MSVC9 due to its bug.
|
||||||
|
if(MSVC AND MSVC_VERSION LESS 1600)
|
||||||
|
set(LLVM_OPTIONAL_SOURCES
|
||||||
|
DenseMapTest.cpp
|
||||||
|
SmallVectorTest.cpp
|
||||||
|
)
|
||||||
|
list(REMOVE_ITEM ADTSources ${LLVM_OPTIONAL_SOURCES})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_llvm_unittest(ADTTests
|
||||||
|
${ADTSources}
|
||||||
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user