From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 8ECB63857C44; Wed, 24 Nov 2021 11:52:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8ECB63857C44 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r11-9300] libstdc++: Make test print which random_device tokens work X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/releases/gcc-11 X-Git-Oldrev: a81eb577eec2ce0e46e202151dc56391e04eeb14 X-Git-Newrev: 4063c2012312555af00ad8bf68ad6c74665a315e Message-Id: <20211124115214.8ECB63857C44@sourceware.org> Date: Wed, 24 Nov 2021 11:52:14 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Nov 2021 11:52:14 -0000 https://gcc.gnu.org/g:4063c2012312555af00ad8bf68ad6c74665a315e commit r11-9300-g4063c2012312555af00ad8bf68ad6c74665a315e Author: Jonathan Wakely Date: Tue Nov 9 15:11:11 2021 +0000 libstdc++: Make test print which random_device tokens work libstdc++-v3/ChangeLog: * testsuite/26_numerics/random/random_device/cons/token.cc: Print results of random_device_available checks. (cherry picked from commit 95e8fcd3d50cbf5bf8a211afeafdf640ed86a015) Diff: --- .../testsuite/26_numerics/random/random_device/cons/token.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libstdc++-v3/testsuite/26_numerics/random/random_device/cons/token.cc b/libstdc++-v3/testsuite/26_numerics/random/random_device/cons/token.cc index a351f57b236..fac5a9fb2c6 100644 --- a/libstdc++-v3/testsuite/26_numerics/random/random_device/cons/token.cc +++ b/libstdc++-v3/testsuite/26_numerics/random/random_device/cons/token.cc @@ -24,6 +24,7 @@ #include #include +#include #include #include @@ -57,8 +58,14 @@ test03() int count = 0; for (const std::string& token : tokens) { + std::printf("checking std::random_device(\"%s\"):\t", token.c_str()); if (__gnu_test::random_device_available(token)) + { + std::puts("yes"); ++count; + } + else + std::puts("no"); } VERIFY( count != 0 ); }