From: Wolfram Schneider Date: Thu, 20 Nov 2014 12:26:10 +0000 (+0100) Subject: in case of a failure don't show $? twice X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=7a06e9e971a22f99930bc8ec817737dd11906095;p=mkws-moved-to-github.git in case of a failure don't show $? twice --- diff --git a/test/bin/bomb.pl b/test/bin/bomb.pl index 94f5c8d..974a4bc 100755 --- a/test/bin/bomb.pl +++ b/test/bin/bomb.pl @@ -69,7 +69,7 @@ $SIG{INT} = "IGNORE"; alarm($timeout); system(@system) == 0 - or die "system('@system') failed: ?='$?', !='$!', ^E='$^E', ?='$?'"; + or die "system('@system') failed: ?='$?', !='$!', ^E='$^E'"; 1;