]> git.sur5r.net Git - i3/i3/commitdiff
Ensure error message is included when bailing out
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 7 Oct 2016 11:36:45 +0000 (13:36 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 23 Oct 2016 15:41:46 +0000 (17:41 +0200)
testcases/t/175-startup-notification.t

index b27bed53ed0648c05a742919d26ab1fc98aa3c08..4456b1d0433db35cd0f5d7c5d3ace14b480b5d15 100644 (file)
@@ -192,7 +192,7 @@ is_num_children($third_ws, 2, 'two containers on the third workspace');
 # environment variable.
 ######################################################################
 
-mkfifo($tmp, 0600) or BAIL_OUT "Could not create FIFO in $tmp";
+mkfifo($tmp, 0600) or BAIL_OUT "Could not create FIFO in $tmp: $!";
 
 cmd qq|exec --no-startup-id echo \$DESKTOP_STARTUP_ID >$tmp|;
 
@@ -208,7 +208,7 @@ is($startup_id, '', 'startup_id empty');
 # 4) same thing, but with double quotes in exec
 ######################################################################
 
-mkfifo($tmp, 0600) or BAIL_OUT "Could not create FIFO in $tmp";
+mkfifo($tmp, 0600) or BAIL_OUT "Could not create FIFO in $tmp: $!";
 
 cmd qq|exec --no-startup-id "echo \$DESKTOP_STARTUP_ID >$tmp"|;