[libcxx] r302182 - Fix test failure with GCC 4.9
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Thu May 4 12:13:28 PDT 2017
Author: ericwf
Date: Thu May 4 14:13:28 2017
New Revision: 302182
URL: http://llvm.org/viewvc/llvm-project?rev=302182&view=rev
Log:
Fix test failure with GCC 4.9
Modified:
libcxx/trunk/test/support/test.workarounds/c1xx_broken_is_trivially_copyable.pass.cpp
Modified: libcxx/trunk/test/support/test.workarounds/c1xx_broken_is_trivially_copyable.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/test.workarounds/c1xx_broken_is_trivially_copyable.pass.cpp?rev=302182&r1=302181&r2=302182&view=diff
==============================================================================
--- libcxx/trunk/test/support/test.workarounds/c1xx_broken_is_trivially_copyable.pass.cpp (original)
+++ libcxx/trunk/test/support/test.workarounds/c1xx_broken_is_trivially_copyable.pass.cpp Thu May 4 14:13:28 2017
@@ -9,6 +9,10 @@
// UNSUPPORTED: c++98, c++03
+// This workaround option is specific to MSVC's C1XX, so we don't care that
+// it isn't set for older GCC versions.
+// XFAIL: gcc-4.9
+
// Verify TEST_WORKAROUND_C1XX_BROKEN_IS_TRIVIALLY_COPYABLE.
#include <type_traits>
More information about the cfe-commits
mailing list