complete-run: pass outdir (not only logpath) to activate_i3()
This commit is contained in:
parent
af335f0403
commit
389fdcf79f
|
@ -141,6 +141,7 @@ sub take_job {
|
|||
unix_socket_path => "/tmp/nested-$display-activation",
|
||||
display => $display,
|
||||
configfile => $tmpfile,
|
||||
outdir => $outdir,
|
||||
logpath => $logpath,
|
||||
cv => $activate_cv
|
||||
);
|
||||
|
@ -189,7 +190,7 @@ sub take_job {
|
|||
my $output;
|
||||
open(my $spool, '>', \$output);
|
||||
my $parser = TAP::Parser->new({
|
||||
exec => [ 'sh', '-c', qq|DISPLAY=$display LOGPATH="$logpath" /usr/bin/perl -Ilib $test| ],
|
||||
exec => [ 'sh', '-c', qq|DISPLAY=$display LOGPATH="$logpath" OUTDIR="$outdir" /usr/bin/perl -Ilib $test| ],
|
||||
spool => $spool,
|
||||
merge => 1,
|
||||
});
|
||||
|
|
|
@ -433,6 +433,7 @@ sub launch_with_config {
|
|||
unix_socket_path => "$tmp_socket_path-activation",
|
||||
display => $ENV{DISPLAY},
|
||||
configfile => $tmpfile,
|
||||
outdir => $ENV{OUTDIR},
|
||||
logpath => $ENV{LOGPATH},
|
||||
cv => $cv,
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue