[libcxx] r209972 - Fix XFAIL condition from r208840
Justin Bogner
mail at justinbogner.com
Sat May 31 00:59:04 PDT 2014
Author: bogner
Date: Sat May 31 02:59:03 2014
New Revision: 209972
URL: http://llvm.org/viewvc/llvm-project?rev=209972&view=rev
Log:
Fix XFAIL condition from r208840
The XFAILs in r208840 were too general. They were meant to only apply
to testing when use_system_lib was set.
Modified:
libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp
Modified: libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp?rev=209972&r1=209971&r2=209972&view=diff
==============================================================================
--- libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp (original)
+++ libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp Sat May 31 02:59:03 2014
@@ -10,9 +10,9 @@
// LWG 2056 changed the values of future_errc, so if we're using new headers
// with an old library we'll get incorrect messages.
//
-// XFAIL: x86_64-apple-darwin11
-// XFAIL: x86_64-apple-darwin12
-// XFAIL: x86_64-apple-darwin13
+// XFAIL: with_system_lib=x86_64-apple-darwin11
+// XFAIL: with_system_lib=x86_64-apple-darwin12
+// XFAIL: with_system_lib=x86_64-apple-darwin13
// <future>
More information about the cfe-commits
mailing list