Skip to content

Commit

Permalink
[unittests/ADT] OptionSetTest: ifdef out for now a specific test that…
Browse files Browse the repository at this point in the history
… fails on MSVC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260663 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
akyrtzi committed Feb 12, 2016
1 parent c3aa277 commit c305a24
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions unittests/ADT/OptionSetTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ TEST(OptionSet, intptr_t) {
#endif
}

#ifndef _MSC_VER
// FIXME: This fails on MSVC.
TEST(OptionSet, intptr_t_isConstructible) {
// First check that std::is_constructible counts explicit conversion
// operators.
Expand All @@ -109,3 +111,5 @@ TEST(OptionSet, intptr_t_isConstructible) {
EXPECT_TRUE(isConvertible);
}
}
#endif

0 comments on commit c305a24

Please sign in to comment.