https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119849
--- Comment #2 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:5d05d496b2b4a3d4674b2e5a46d3a355abf4055d commit r15-9552-g5d05d496b2b4a3d4674b2e5a46d3a355abf4055d Author: Jakub Jelinek <ja...@redhat.com> Date: Thu Apr 17 12:14:15 2025 +0200 libgomp: Don't test ompx::allocator::gnu_pinned_mem on non-linux targets. The libgomp.c/alloc-pinned*.c test have /* { dg-skip-if "Pinning not implemented on this host" { ! *-*-linux-gnu* } } */ so they are only run on Linux targets right now. Duplicating the tests or reworking them into headers looked like too much work for me right now this late in stage4, so I've just #ifdefed the uses at least for now. 2025-04-17 Jakub Jelinek <ja...@redhat.com> PR libgomp/119849 * testsuite/libgomp.c++/allocator-1.C (test_inequality, main): Guard ompx::allocator::gnu_pinned_mem uses with #ifdef __gnu_linux__. * testsuite/libgomp.c++/allocator-2.C (main): Likewise.