ADTTests: [CMake] Exclude DenseMapTest.cpp and SmallVectorTest.cpp on MSVC9 due to its bug.

llvm-svn: 162918
This commit is contained in:
NAKAMURA Takumi 2012-08-30 16:22:32 +00:00
parent fa81438042
commit 3ead47e718
1 changed files with 14 additions and 1 deletions

View File

@ -2,7 +2,7 @@ set(LLVM_LINK_COMPONENTS
Support
)
add_llvm_unittest(ADTTests
set(ADTSources
APFloatTest.cpp
APIntTest.cpp
BitVectorTest.cpp
@ -31,3 +31,16 @@ add_llvm_unittest(ADTTests
TwineTest.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}
)