diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-04-10 15:46:03 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-04-10 15:46:03 +0100 |
commit | 9cadd6bd4d8d68688d30915716b65dc98eb535ac (patch) | |
tree | 83195a1cc97064ffb07e08080893e48026b1263e | |
parent | 6fe6bd7c0860961bfa4a705974bce6b9ec31edeb (diff) | |
download | gcc-9cadd6bd4d8d68688d30915716b65dc98eb535ac.zip gcc-9cadd6bd4d8d68688d30915716b65dc98eb535ac.tar.gz gcc-9cadd6bd4d8d68688d30915716b65dc98eb535ac.tar.bz2 |
Fix typo in effective-target check
* testsuite/lib/libstdc++.exp (check_v3_target_parallel_mode): Fix
typo.
From-SVN: r270259
-rw-r--r-- | libstdc++-v3/ChangeLog | 3 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 355e2d5..9998607 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,8 @@ 2019-04-10 Jonathan Wakely <jwakely@redhat.com> + * testsuite/lib/libstdc++.exp (check_v3_target_parallel_mode): Fix + typo. + PR libstdc++/89851 * testsuite/20_util/variant/89851.cc: New test. diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index 5a12ac0..d0efc90 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -1048,7 +1048,7 @@ proc check_v3_target_parallel_mode { } { global v3-libgomp # If 'make check-parallel' is running the test succeeds. if { ${v3-libgomp} == 1 && [regexp "libgomp" $cxxflags] } { - return1 1 + return 1 } return 0 }] |