CI updates

This commit is contained in:
Markus F.X.J. Oberhumer 2025-07-23 14:33:29 +02:00
parent 62f22d61e6
commit fbbc2bc874
2 changed files with 3 additions and 2 deletions

View File

@ -169,7 +169,8 @@ if [[ $UPX_CONFIG_DISABLE_EXHAUSTIVE_TESTS != ON ]]; then
"${run_upx[@]}" -qq -d upx-packed-${s}${exe} ${fo} -o upx-unpacked-${s}${exe}
cmp -s upx-unpacked${exe} upx-unpacked-${s}${exe}
if [[ $UPX_CONFIG_DISABLE_RUN_PACKED_TEST != ON ]]; then
for ((i = 0; i < 9; i++)); do
: ${upx_run_packed_test:=9}
for ((i = 0; i < $upx_run_packed_test; i++)); do
"${emu[@]}" ./upx-packed-${s}${exe} --version-short
done
fi

View File

@ -40,7 +40,7 @@ elif [[ -n $CMAKE_CROSSCOMPILING_EMULATOR ]]; then
true
else
upx_exe_runner=emu_gdb
true
: ${upx_run_packed_test:=100}
fi
source "$argv0dir/mimic_ctest.sh"