IE11 CSS parsing in regression tests, MKWS-386
[mkws-moved-to-github.git] / test / bin / bomb.pl
index 1592161..ae97859 100755 (executable)
@@ -57,7 +57,7 @@ $SIG{ALRM} = sub {
     my $pgid = getpgrp();
 
     warn "Alarm handler got called after $timeout seconds\n";
-    warn "Kill now the process group...\n\n";
+    warn "Kill now the process group $pgid\n\n";
 
     # kill process group
     kill "INT", -$pgid;
@@ -69,7 +69,7 @@ $SIG{INT} = "IGNORE";
 alarm($timeout);
 
 system(@system) == 0
-  or die "system @system failed: $?";
+  or die "system('@system') failed: ?='$?', !='$!', ^E='$^E'\n";
 
 1;