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

check_whitespace is too aggressive

modified:   mimic_ctest.sh
This commit is contained in:
John Reiser
2025-07-14 12:02:06 -07:00
parent 9a429425c4
commit f0ae40dbc6

View File

@ -49,19 +49,19 @@ echo "run_upx='${run_upx[*]}'"
## jreiser test 2025-07-14
cat > catch-sigsegv.gdb <<'EOF'
catch signal SIGSEGV
commands
x/i $pc
info reg
x/16i $pc-0x20
end
catch signal SIGSEGV
commands
x/i $pc
info reg
x/16i $pc-0x20
end
catch signal SIGTRAP
commands
x/i $pc
info reg
x/16i $pc-0x20
end
catch signal SIGTRAP
commands
x/i $pc
info reg
x/16i $pc-0x20
end
EOF
catcher=$(readlink -f catch-sigsegv.gdb)