1
0
mirror of https://github.com/upx/upx.git synced 2025-08-11 22:52:30 +08:00

CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2025-07-23 14:33:29 +02:00
committed by John Reiser
parent 8ba87a6d33
commit 10b33ba911
2 changed files with 3 additions and 2 deletions

View File

@ -205,7 +205,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"