CI Tests: adds check for i686 packages in bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has testcase

This commit is contained in:
Sergey Kolosov 2022-07-12 20:57:52 +02:00
parent 1bfc6912f1
commit 8859e9a9be

View File

@ -53,7 +53,7 @@ rlJournalStart
for L in $TESTPRELOADLIBS
do
rlRun -c "LD_PRELOAD=/usr/lib64/$L /lib64/libc.so.6"
[[ $(rlGetArch) == "x86_64" ]] && rlRun -c "LD_PRELOAD=/usr/lib/$L /usr/lib/libc.so.6"
[[ $(rlGetArch) == "x86_64" ]] && rpm -q glibc.i686 && rpm -q libstdc++.i686 && rlRun -c "LD_PRELOAD=/usr/lib/$L /usr/lib/libc.so.6"
done
rlPhaseEnd