tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Shut up Perl warning
Eelco Dolstra
12 years ago
de57c0eb
01fc3e51
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
lib
test-driver
Machine.pm
+1
-1
nixos/lib/test-driver/Machine.pm
···
497
497
retry sub {
498
498
my ($status, $out) = $self->execute("journalctl -bu systemd-logind | grep Linked");
499
499
return 0 if $status != 0;
500
500
-
my ($status, $out) = $self->execute("xwininfo -root > /dev/null 2>&1");
500
500
+
($status, $out) = $self->execute("xwininfo -root > /dev/null 2>&1");
501
501
return 1 if $status == 0;
502
502
}
503
503
});