Add tests for difference in RHEL and Fedora frame pointers

Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
Stephen Gallagher 2023-01-11 14:38:14 -05:00
parent 9e10bb665e
commit 7f02b5c439
No known key found for this signature in database
GPG Key ID: 45DB85A568286D11
1 changed files with 5 additions and 2 deletions

View File

@ -39,8 +39,11 @@ for arch in aarch64 armv7hl x86_64 ppc64le riscv64; do
rpmeval --target="${arch}-linux" --undefine='_include_frame_pointers' | grep -qv -- "$flags"
validate "[${arch}] Test that the flags are _not_ included if the macro is undefined"
rpmeval --target="${arch}-linux" | grep -q -- "$flags"
validate "[${arch}] Test that the flags are included by default"
rpmeval --target="${arch}-linux" --define="%fedora 1" | grep -q -- "$flags"
validate "[${arch}] Test that the flags are included by default on Fedora"
rpmeval --target="${arch}-linux" --define="%rhel 1" | grep -qv -- "$flags"
validate "[${arch}] Test that the flags are _not_ included by default on RHEL"
done
flags='-fno-omit-frame-pointer'