aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2024-10-29 00:18:25 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2024-10-29 00:18:25 +0000
commit87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32 (patch)
tree995875479eec103936a44d089a40a0a48c7192f2 /libstdc++-v3
parenta67594d181527218d8c0316ef68af238f8d80e87 (diff)
downloadgcc-87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32.zip
gcc-87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32.tar.gz
gcc-87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32.tar.bz2
Daily bump.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog48
1 files changed, 48 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 37c5187..9be0aa3 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,51 @@
+2024-10-28 Jonathan Wakely <jwakely@redhat.com>
+
+ * testsuite/23_containers/vector/bool/cons/from_range.cc: Use
+ dg-do run instead of compile.
+ (test_ranges): Use do_test instead of do_test_a for rvalue
+ range.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+ * testsuite/23_containers/vector/bool/modifiers/assign/assign_range.cc:
+ Use dg-do run instead of compile.
+ (do_test): Use same test logic for vector<bool> as for primary
+ template.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+ * testsuite/23_containers/vector/bool/modifiers/insert/append_range.cc:
+ Use dg-do run instead of compile.
+ (test_ranges): Use do_test instead of do_test_a for rvalue
+ range.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+ * testsuite/23_containers/vector/bool/modifiers/insert/insert_range.cc:
+ Use dg-do run instead of compile.
+ (do_test): Fix incorrect function arguments to match intended
+ results.
+ (test_ranges): Use do_test instead of do_test_a for rvalue
+ range.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+ * testsuite/23_containers/vector/cons/from_range.cc: Use dg-do
+ run instead of compile.
+ (test_ranges): Fix ill-formed call to do_test.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+ * testsuite/23_containers/vector/modifiers/append_range.cc:
+ Use dg-do run instead of compile.
+ (test_constexpr): Likewise.
+ * testsuite/23_containers/vector/modifiers/assign/assign_range.cc:
+ Use dg-do run instead of compile.
+ (do_test): Do not reuse input ranges.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+ * testsuite/23_containers/vector/modifiers/insert/insert_range.cc:
+ Use dg-do run instead of compile.
+ (do_test): Fix incorrect function arguments to match intended
+ results.
+ (test_constexpr): Call function template instead of just
+ instantiating it.
+
2024-10-27 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/111055