Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2017-12-04 23:46:38 +0300
committerMarshall Clow <mclow.lists@gmail.com>2017-12-04 23:46:38 +0300
commit936a2fd4b47b67c8a49602ffb50e6b0e3ac2ae57 (patch)
treef68243e7d3ff783027c628046ade894fb76fd286 /libcxx
parent7e61f249629d3d3d5f5c117f35d914cd3694b963 (diff)
Ooops. I checked in a test for a bug I haven't fixed yet. Temporrarily commented it out.
llvm-svn: 319693
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp b/libcxx/test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp
index de0a02392cd7..5ca5aaf8629c 100644
--- a/libcxx/test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp
+++ b/libcxx/test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp
@@ -48,6 +48,7 @@ int main()
test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
}
#endif
+#if 0
{
// https://bugs.llvm.org/show_bug.cgi?id=31454
std::basic_string<veryLarge> s;
@@ -56,4 +57,5 @@ int main()
s.push_back(vl);
s.push_back(vl);
}
+#endif
}