]> git.ipfire.org Git - thirdparty/gcc.git/commit
testsuite: Fix up pr113617 test for darwin [PR113617]
authorJakub Jelinek <jakub@redhat.com>
Fri, 8 Mar 2024 14:18:56 +0000 (15:18 +0100)
committerJakub Jelinek <jakub@redhat.com>
Fri, 8 Mar 2024 14:18:56 +0000 (15:18 +0100)
commit8263a4b6505f84973c2ed2fb8d4f2036ca335ff3
treedcae119264b0d185bf38cf67aaf5333757e163c6
parent018ddc86b928514d7dfee024dcdeb204d5dcdd61
testsuite: Fix up pr113617 test for darwin [PR113617]

The test attempts to link a shared library, and apparently Darwin doesn't
allow by default for shared libraries to contain undefined symbols.

The following patch just adds dummy definitions for the symbols, so that
the library no longer has any undefined symbols at least in my linux
testing.
Furthermore, for target { !shared } targets (like darwin until the it is
fixed in target-supports.exp), because we then link a program rather than
shared library, the patch also adds a dummy main definition so that it
can link.

2024-03-08  Jakub Jelinek  <jakub@redhat.com>

PR rtl-optimization/113617
PR target/114233
* g++.dg/other/pr113617.C: Define -DSHARED when linking with -shared.
* g++.dg/other/pr113617-aux.cc: Add definitions for used methods and
templates not defined elsewhere.
gcc/testsuite/g++.dg/other/pr113617-aux.cc
gcc/testsuite/g++.dg/other/pr113617.C