From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 75B8B385C321; Tue, 14 Jun 2022 19:27:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 75B8B385C321 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 r10-10834] libstdc++: Run all tests in file X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/releases/gcc-10 X-Git-Oldrev: 43cbff3da5a856d1b18a9ad33b337ab829af73ed X-Git-Newrev: 78f3899e5d4f8e70bce4d864e59d2cb9f62796ce Message-Id: <20220614192704.75B8B385C321@sourceware.org> Date: Tue, 14 Jun 2022 19:27:04 +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: Tue, 14 Jun 2022 19:27:04 -0000 https://gcc.gnu.org/g:78f3899e5d4f8e70bce4d864e59d2cb9f62796ce commit r10-10834-g78f3899e5d4f8e70bce4d864e59d2cb9f62796ce Author: Jonathan Wakely Date: Tue Nov 24 13:11:13 2020 +0000 libstdc++: Run all tests in file libstdc++-v3/ChangeLog: * testsuite/30_threads/jthread/95989.cc: Run all three test functions, not just the first one twice. (cherry picked from commit 7e0078f8643f9204777152ed0f915b52072a05c8) Diff: --- libstdc++-v3/testsuite/30_threads/jthread/95989.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/30_threads/jthread/95989.cc b/libstdc++-v3/testsuite/30_threads/jthread/95989.cc index 46444b5ccab..c7a9430eee9 100644 --- a/libstdc++-v3/testsuite/30_threads/jthread/95989.cc +++ b/libstdc++-v3/testsuite/30_threads/jthread/95989.cc @@ -50,5 +50,6 @@ int main() { test01(); - test01(); + test02(); + test03(); }