From: Michael Stapelberg Date: Sat, 10 Dec 2011 11:32:15 +0000 (+0000) Subject: tests: disable SHM logging, we redirect anyways X-Git-Tag: 4.2~194^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=87d98a128fef631bdc95f37532596aa4b6afddcc;p=i3%2Fi3 tests: disable SHM logging, we redirect anyways --- diff --git a/testcases/lib/SocketActivation.pm b/testcases/lib/SocketActivation.pm index da1dda33..36197794 100644 --- a/testcases/lib/SocketActivation.pm +++ b/testcases/lib/SocketActivation.pm @@ -85,7 +85,8 @@ sub activate_i3 { # Construct the command to launch i3. Use maximum debug level, disable # the interactive signalhandler to make it crash immediately instead. - my $i3cmd = abs_path("../i3") . " -V -d all --disable-signalhandler"; + # Also disable logging to SHM since we want to redirect the logs anyways. + my $i3cmd = abs_path("../i3") . " -V -d all --disable-signalhandler --shmlog-size=0"; # For convenience: my $outdir = $args{outdir};