From 058c785479b1652ffd47d397a9693fe5e5fdea39 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 16 May 2017 15:26:14 +0100 Subject: [PATCH] Test source_location::current() in default member initializer * testsuite/experimental/source_location/1.cc: Change expected result for source_location::current() used in default member initializer. From-SVN: r248111 --- libstdc++-v3/ChangeLog | 4 +++- libstdc++-v3/testsuite/experimental/source_location/1.cc | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5cc498b6cb7..c32dc62abca 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,6 +1,8 @@ 2017-05-16 Jonathan Wakely - * configure: Regenerate. + * testsuite/experimental/source_location/1.cc: Change expected result + for source_location::current() used in default member initializer. + * doc/xml/manual/status_cxx2017.xml: Update status table. * doc/html/*: Regenerate. * include/Makefile.am: Add new header. diff --git a/libstdc++-v3/testsuite/experimental/source_location/1.cc b/libstdc++-v3/testsuite/experimental/source_location/1.cc index 2634ab465a1..febd84e2b65 100644 --- a/libstdc++-v3/testsuite/experimental/source_location/1.cc +++ b/libstdc++-v3/testsuite/experimental/source_location/1.cc @@ -56,9 +56,9 @@ void test02() VERIFY( s0.loc.function_name() == string_view(__FUNCTION__) ); S s1(1); - VERIFY( s1.loc.line() != 58 ); + VERIFY( s1.loc.line() == 46 ); VERIFY( s1.loc.file_name() == __FILE__ ); - // VERIFY( s1.loc.function_name() == s1.func ); + VERIFY( s1.loc.function_name() == s1.func ); } source_location f(source_location a = source_location::current()) { -- 2.30.2