diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2020-11-24 13:11:13 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2020-11-24 14:59:41 +0000 |
commit | 7e0078f8643f9204777152ed0f915b52072a05c8 (patch) | |
tree | a320a458cc8c5f92d0faf6e372915652f6cc5b71 | |
parent | 4bbd5d0c5fb2b7527938ad44a6d8a2f2ef8bbe12 (diff) | |
download | gcc-7e0078f8643f9204777152ed0f915b52072a05c8.zip gcc-7e0078f8643f9204777152ed0f915b52072a05c8.tar.gz gcc-7e0078f8643f9204777152ed0f915b52072a05c8.tar.bz2 |
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.
-rw-r--r-- | libstdc++-v3/testsuite/30_threads/jthread/95989.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/30_threads/jthread/95989.cc b/libstdc++-v3/testsuite/30_threads/jthread/95989.cc index 46444b5..c7a9430 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(); } |