about summary refs log tree commit diff homepage
path: root/test/Feature
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2014-09-12 14:20:36 -0700
committerDaniel Dunbar <daniel@zuster.org>2014-09-12 17:39:17 -0700
commitba5528f112ec091ed1352e81c52c6b4c243bb90f (patch)
treef0a74d86abc76fb6f75987808361cc64a3d69e96 /test/Feature
parentcc364493808ba1453d6ea84124f16ace0e975194 (diff)
downloadklee-ba5528f112ec091ed1352e81c52c6b4c243bb90f.tar.gz
XFAIL LargeReturnTypes.cpp on Darwin, it depends indirectly on using libstdcxx.
Diffstat (limited to 'test/Feature')
-rw-r--r--test/Feature/LargeReturnTypes.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Feature/LargeReturnTypes.cpp b/test/Feature/LargeReturnTypes.cpp
index caa345fc..274da05e 100644
--- a/test/Feature/LargeReturnTypes.cpp
+++ b/test/Feature/LargeReturnTypes.cpp
@@ -5,6 +5,12 @@
  * (i.e. structs).  In this test case, fstream::ftellg() returns a
  * streampos (an {i64, i64} pair) which is implicitly converted to a size_t. */
 
+// This test currently doesn't work on darwin because this isn't how things work
+// in libc++. This test should be rewritten to not depend on an external
+// dependency.
+//
+// XFAIL: darwin
+
 #include <fstream>
 
 using namespace std;