]> git.sur5r.net Git - i3/i3/blob - testcases/t/198-regression-scratchpad-crash.t
Merge branch 'fix-split-indicator'
[i3/i3] / testcases / t / 198-regression-scratchpad-crash.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 # When using a command which moves a window to scratchpad from an invisible
4 # (e.g. unfocused) workspace and immediately shows that window again, i3
5 # crashed.
6 # Bug still in: 4.2-305-g22922a9
7 use i3test;
8
9 my $ws1 = fresh_workspace;
10 my $invisible_window = open_window;
11 my $other_focusable_window = open_window;
12
13 my $ws2 = fresh_workspace;
14 my $id = $invisible_window->id;
15 cmd qq|[id="$id"] move scratchpad, scratchpad show|;
16
17 does_i3_live;
18
19 done_testing;