]> git.ipfire.org Git - thirdparty/gcc.git/commit
libstdc++: Fix testsuite no_pch directive
authorJonathan Wakely <jwakely@redhat.com>
Wed, 16 Aug 2023 20:46:05 +0000 (21:46 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Thu, 9 Nov 2023 08:04:31 +0000 (08:04 +0000)
commit5d036ff51e2491401b9a64705bfd7f7467764260
tree6b431bbcaa50d8592da2e5698a2b30044150e494
parent3f14c4b62bc2d7bbd9ede6b3f3e2fed2f18a6515
libstdc++: Fix testsuite no_pch directive

The { dg-add-options no_pch } directive is supposed to add a macro
definition that invalidates the PCH file, and ensures that the #include
directives in the test file are processed as written. But the proc that
adds the options actually removes all existing options, cancelling out
any previous dg-options directive.

This means that using no_pch will cause FAILs in a file that relies on
other options set by an earlier dg-options.

The no_pch directive was added for PR libstdc++/21769 where Janis
suggested adding it as return "$flags -D__GLIBCXX__=99999999" but what
was actually committed didn't include the $flags so replaced them.

Additionally, using no_pch  only prevents the precompiled version of
<bits/stdc++.h> from being included, it doesn't prevent the
non-precompiled version being included by -include bits/stdc++.h in the
test flags. Use regsub to filter that out of the options as well.

libstdc++-v3/ChangeLog:

* testsuite/lib/dg-options.exp (add_options_for_no_pch): Remove
any "-include bits/stdc++.h" from options and add the macro to
the existing options instead of replacing them.

(cherry picked from commit 91315f23ba127ea4d1a584023bae34e143f6eb8c)
libstdc++-v3/testsuite/lib/dg-options.exp