diff options
author | François Dumont <fdumont@gcc.gnu.org> | 2017-04-29 19:35:28 +0000 |
---|---|---|
committer | François Dumont <fdumont@gcc.gnu.org> | 2017-04-29 19:35:28 +0000 |
commit | 30fc569c180ea2bf773402d12e8435d99e42a389 (patch) | |
tree | b434860b4b6300026e9c1f5163f580a64ba098ee | |
parent | cc3a5b33bae232329f4d02a3a8e391623ceeb5c0 (diff) | |
download | gcc-30fc569c180ea2bf773402d12e8435d99e42a389.zip gcc-30fc569c180ea2bf773402d12e8435d99e42a389.tar.gz gcc-30fc569c180ea2bf773402d12e8435d99e42a389.tar.bz2 |
48362.cc: Replace a regexp-test by a note-test.
2017-04-29 François Dumont <fdumont@gcc.gnu.org>
* testsuite/libstdc++-prettyprinters/48362.cc: Replace a regexp-test
by a note-test.
From-SVN: r247411
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6d78fcd..65e9cad 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2017-04-29 François Dumont <fdumont@gcc.gnu.org> + + * testsuite/libstdc++-prettyprinters/48362.cc: Replace a regexp-test + by a note-test. + 2017-04-28 Jonathan Wakely <jwakely@redhat.com> PR libstdc++/80553 diff --git a/libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc b/libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc index 998b6d5..db9fd9a 100644 --- a/libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc +++ b/libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc @@ -26,7 +26,7 @@ int main() { std::tuple<> t1; -// { dg-final { regexp-test t1 {empty std::tuple} } } +// { dg-final { note-test t1 {empty std::tuple} } } std::tuple<std::string, int, std::tuple<>> t2{ "Johnny", 5, {} }; // { dg-final { regexp-test t2 {std::tuple containing = {\[1\] = "Johnny", \[2\] = 5, \[3\] = {<std::(__7::)?tuple<>> = empty std::tuple, <No data fields>}}} } } |