aboutsummaryrefslogtreecommitdiff
path: root/test/cases/pie_linux.zig
AgeCommit message (Collapse)Author
2025-10-04test: remove some tests that are now covered well enough by test-stack-tracesAlex Rønne Petersen
The amount of cross compilation required for these tests was too time-consuming for how much value they added. test-stack-traces now cover these well enough, especially as we add more exotic machines to the CI fleet to run native tests.
2025-09-22std.pie: fix register constraint in getDynamicSymbol() for s390x (#25327)Alex Rønne Petersen
If the compiler happens to pick `ret = r0`, then this will assemble to `ag r0, 0` which is obviously not what we want. Using `a` instead of `r` will ensure that we get an appropriate address register, i.e. `r1` through `r15`. Re-enable pie_linux for s390x-linux which was disabled in ed7ff0b693037078f451a7c6c1124611060f4892.
2025-09-20allow some test cases to regressAndrew Kelley
tracked by #24061 - these should be re-enabled once that is solved.
2024-11-24test: Add test cases for PIC/PIE on various supported platforms.Alex Rønne Petersen
Closes #22052.