From: Jonathan Wakely Date: Tue, 17 Aug 2021 13:18:58 +0000 (+0100) Subject: libstdc++: Test std::seed_seq construction from input iterators X-Git-Tag: basepoints/gcc-13~5352 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=20698ec5b681e23fa3404ed0ef78e3367b28e16d;p=thirdparty%2Fgcc.git libstdc++: Test std::seed_seq construction from input iterators Signed-off-by: Jonathan Wakely libstdc++-v3/ChangeLog: * testsuite/26_numerics/random/seed_seq/cons/range.cc: Check construction from input iterators. --- diff --git a/libstdc++-v3/testsuite/26_numerics/random/seed_seq/cons/range.cc b/libstdc++-v3/testsuite/26_numerics/random/seed_seq/cons/range.cc index 8ea87342002a..63233c893c08 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/seed_seq/cons/range.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/seed_seq/cons/range.cc @@ -24,6 +24,7 @@ #include #include +#include void test01() @@ -38,9 +39,22 @@ test01() //VERIFY(); } +void +test02() +{ + unsigned arr[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; + __gnu_test::input_container in(arr); + std::seed_seq seq(in.begin(), in.end()); + + std::vector foo(10000); + seq.generate(foo.begin(), foo.end()); + + VERIFY( seq.size() == 10 ); +} + int main() { test01(); - return 0; + test02(); }