diff options
author | Louis Dionne <ldionne@apple.com> | 2018-11-22 17:43:22 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2018-11-22 17:43:22 +0000 |
commit | 3ffe0b75fbcc754b859340f5d57d241df1d6dc6c (patch) | |
tree | 272c4e6a0e89b2210d389cbbbaca0067b71c8c8f /libcxx/test/std/depr/depr.str.strstreams | |
parent | 16cc195e8d8f1dc5dcd2438a6282c143f1725fe9 (diff) | |
download | bcm5719-llvm-3ffe0b75fbcc754b859340f5d57d241df1d6dc6c.tar.gz bcm5719-llvm-3ffe0b75fbcc754b859340f5d57d241df1d6dc6c.zip |
[libcxx] Reintroduce UNSUPPORTED annotation for strstreambuf overflow test
This is a revert of r347421, except I'm using the with_system_cxx_lib
lit feature instead of availability to mark the test as unsupported
(because the problem is a bug in the dylib itself). In r347421, I said
I wasn't able to reproduce the issue and that's why I was removing it:
this was because I ran lit slightly wrong. The problem mentioned really
exists.
llvm-svn: 347475
Diffstat (limited to 'libcxx/test/std/depr/depr.str.strstreams')
-rw-r--r-- | libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp b/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp index dda19a9517f..652100c978b 100644 --- a/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp +++ b/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp @@ -13,6 +13,10 @@ // int overflow(int c); +// There was an overflow in the dylib on older macOS versions +// UNSUPPORTED: with_system_cxx_lib=macosx10.8 +// UNSUPPORTED: with_system_cxx_lib=macosx10.7 + #include <iostream> #include <string> #include <strstream> |