Disable test that fails due to lack of std::true_type in C++03.

Michael, can this test be ported to C++03?

llvm-svn: 172996
diff --git a/llvm/unittests/Support/ErrorOrTest.cpp b/llvm/unittests/Support/ErrorOrTest.cpp
index 1f80aa0..8ce7160 100644
--- a/llvm/unittests/Support/ErrorOrTest.cpp
+++ b/llvm/unittests/Support/ErrorOrTest.cpp
@@ -56,6 +56,7 @@
   std::string ArgName;
 };
 
+#if LLVM_HAS_CXX11_STDLIB
 namespace llvm {
 template<>
 struct ErrorOrUserDataTraits<InvalidArgError> : std::true_type {
@@ -76,3 +77,4 @@
   EXPECT_EQ("adena", t4().getError<InvalidArgError>().ArgName);
 }
 } // end anon namespace
+#endif