[PATCH] D87682: [libcxx] Disable failing test for no-exceptions build
Oliver Stannard (Linaro) via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 15 06:28:51 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2744c2e29572: [libcxx] Disable failing test for no-exceptions build (authored by ostannard).
Changed prior to commit:
https://reviews.llvm.org/D87682?vs=291860&id=291889#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D87682/new/
https://reviews.llvm.org/D87682
Files:
libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/pbump2gig.pass.cpp
Index: libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/pbump2gig.pass.cpp
===================================================================
--- libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/pbump2gig.pass.cpp
+++ libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/pbump2gig.pass.cpp
@@ -15,6 +15,10 @@
//
// REQUIRES: long_tests
+// Unsupported for no-exceptions builds because they have no way to report an
+// allocation failure when attempting to allocate the 2GiB string.
+// UNSUPPORTED: no-exceptions
+
#include <sstream>
#include <cassert>
#include "test_macros.h"
@@ -28,18 +32,14 @@
int main(int, char**)
{
-#ifndef TEST_HAS_NO_EXCEPTIONS
try {
-#endif
std::string str(2147483648, 'a');
SB sb;
sb.str(str);
assert(sb.pubpbase() <= sb.pubpptr());
-#ifndef TEST_HAS_NO_EXCEPTIONS
}
catch (const std::length_error &) {} // maybe the string can't take 2GB
catch (const std::bad_alloc &) {} // maybe we don't have enough RAM
-#endif
return 0;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87682.291889.patch
Type: text/x-patch
Size: 1161 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200915/5e6232d8/attachment.bin>
More information about the llvm-commits
mailing list