diff options
-rw-r--r-- | test/Feature/LargeReturnTypes.cpp | 6 |
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; |