2011-06-02 20:05:34 -04:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Verifies that i3 survives inplace restarts with fullscreen containers
|
|
|
|
#
|
|
|
|
use i3test;
|
|
|
|
|
|
|
|
fresh_workspace;
|
|
|
|
|
2011-11-21 18:47:32 -05:00
|
|
|
open_window;
|
|
|
|
open_window;
|
2011-06-02 20:05:34 -04:00
|
|
|
|
|
|
|
cmd 'layout stacking';
|
2011-11-23 06:57:13 -05:00
|
|
|
sync_with_i3;
|
2011-06-02 20:05:34 -04:00
|
|
|
|
|
|
|
cmd 'fullscreen';
|
2011-11-23 06:57:13 -05:00
|
|
|
sync_with_i3;
|
2011-06-02 20:05:34 -04:00
|
|
|
|
|
|
|
cmd 'restart';
|
|
|
|
sleep 1;
|
|
|
|
|
|
|
|
does_i3_live;
|
|
|
|
|
|
|
|
done_testing;
|