You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve crash detection: Add XIO error and wait for log flush
Added detection for more crash signatures:
- XIO fatal errors (X11 display problems)
- "terminate called without an active exception" (C++ crashes)
- Added 2-second sleep after timeout to let Spring flush logs
This catches crashes that happen as Spring shuts down after the timeout.
if grep -q "CrashHandler.*Error.*Aborted\|CrashHandler.*Error.*Segmentation" test-data/infolog.txt; then
186
-
echo "✗ FAIL: Spring crashed (found crash in infolog)"
187
+
# Check for crash signatures in infolog
188
+
if grep -q "CrashHandler.*Error.*Aborted\|CrashHandler.*Error.*Segmentation\|XIO.*fatal.*error\|terminate called without an active exception" test-data/infolog.txt; then
189
+
echo "✗ FAIL: Spring crashed (found crash signature in infolog)"
0 commit comments