2011-06-03 02:05:34 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Verifies that i3 survives inplace restarts with fullscreen containers
|
|
|
|
#
|
|
|
|
use i3test;
|
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use X11::XCB::Connection;
|
|
|
|
|
|
|
|
my $x = X11::XCB::Connection->new;
|
|
|
|
|
|
|
|
fresh_workspace;
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
|
|
|
open_window($x);
|
2011-06-03 02:05:34 +02:00
|
|
|
|
|
|
|
cmd 'layout stacking';
|
|
|
|
sleep 1;
|
|
|
|
|
|
|
|
cmd 'fullscreen';
|
|
|
|
sleep 1;
|
|
|
|
|
|
|
|
cmd 'restart';
|
|
|
|
sleep 1;
|
|
|
|
|
|
|
|
does_i3_live;
|
|
|
|
|
|
|
|
done_testing;
|