From: Jonathan Wakely Date: Tue, 23 Nov 2021 21:35:40 +0000 (+0000) Subject: libstdc++: Add another testcase for std::unique_ptr printer [PR103086] X-Git-Tag: basepoints/gcc-13~2831 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c59ec55c3459fba619e05ee7f59480b71e85ffd7;p=thirdparty%2Fgcc.git libstdc++: Add another testcase for std::unique_ptr printer [PR103086] libstdc++-v3/ChangeLog: PR libstdc++/103086 * testsuite/libstdc++-prettyprinters/cxx11.cc: Check unique_ptr with non-empty pointer and non-empty deleter. --- diff --git a/libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx11.cc b/libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx11.cc index 637246b3c125..fd50e8b028a2 100644 --- a/libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx11.cc +++ b/libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx11.cc @@ -151,6 +151,17 @@ main() std::unique_ptr& rempty_ptr = empty_ptr; // { dg-final { note-test rempty_ptr {std::unique_ptr = {get() = {}}} } } + struct Deleter_pr103086 + { + int deleter_member = -1; + void operator()(int*) const noexcept { } + }; + + std::unique_ptr uniq_ptr; +// { dg-final { note-test uniq_ptr {std::unique_ptr = {get() = 0x0}} } } + std::unique_ptr& runiq_ptr = uniq_ptr; +// { dg-final { note-test runiq_ptr {std::unique_ptr = {get() = 0x0}} } } + ExTuple tpl(6,7); // { dg-final { note-test tpl {std::tuple containing = {[1] = 6, [2] = 7}} } } ExTuple &rtpl = tpl;