[unittests/ADT] OptionSetTest: ifdef out for now a specific test that fails on MSVC.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 12 Feb 2016 07:50:01 +0000 (07:50 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 12 Feb 2016 07:50:01 +0000 (07:50 +0000)
llvm-svn: 260663

llvm/unittests/ADT/OptionSetTest.cpp

index 2f22db4..21411fe 100644 (file)
@@ -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.
@@ -109,3 +111,5 @@ TEST(OptionSet, intptr_t_isConstructible) {
     EXPECT_TRUE(isConvertible);
   }
 }
+#endif
+