CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2025-07-25 03:07:51 +02:00
parent fbbc2bc874
commit ae6d5303ba
5 changed files with 15 additions and 10 deletions
+2 -2
View File
@@ -169,8 +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
: ${upx_run_packed_test:=9}
for ((i = 0; i < $upx_run_packed_test; i++)); do
: ${upx_run_packed_test_count:=9}
for ((i = 0; i < $upx_run_packed_test_count; i++)); do
"${emu[@]}" ./upx-packed-${s}${exe} --version-short
done
fi
+1 -1
View File
@@ -40,7 +40,7 @@ elif [[ -n $CMAKE_CROSSCOMPILING_EMULATOR ]]; then
true
else
upx_exe_runner=emu_gdb
: ${upx_run_packed_test:=100}
: ${upx_run_packed_test_count:=100}
fi
source "$argv0dir/mimic_ctest.sh"