]> git.sur5r.net Git - i3/i3/commitdiff
tests: complete-run: remove debugging messages
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 24 Sep 2011 12:13:26 +0000 (13:13 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 24 Sep 2011 12:13:26 +0000 (13:13 +0100)
testcases/complete-run.pl

index b356e0d1078ef973d871614495b59511c758f8be..3566d78b3125873f13a326543320d8d833dca10a 100755 (executable)
@@ -159,15 +159,12 @@ sub take_job {
         if (!defined($pid)) {
             die "could not fork()";
         }
-        say "pid = $pid";
         if ($pid == 0) {
-            say "child!";
             $ENV{LISTEN_PID} = $$;
             $ENV{LISTEN_FDS} = 1;
             $ENV{DISPLAY} = $display;
             $^F = 3;
 
-            say "fileno is " . fileno($socket);
             close($reserved);
             POSIX::dup2(fileno($socket), 3);
 
@@ -202,7 +199,6 @@ sub take_job {
         # wait for the reply
         $hdl->push_read(chunk => 1, => sub {
             my ($h, $line) = @_;
-            say "read something from i3";
             $activate_cv->send(1);
             undef $hdl;
         });