tests/stacking: Add test checking the initial size

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1171
This commit is contained in:
Jonas Ådahl 2020-04-06 12:12:02 +02:00
parent 0a8286e008
commit 9b2ee14eb1
2 changed files with 37 additions and 0 deletions

View File

@ -145,6 +145,7 @@ stacking_tests = [
'unmaximize-new-size', 'unmaximize-new-size',
'fullscreen-maximize', 'fullscreen-maximize',
'restore-position', 'restore-position',
'default-size',
] ]
foreach stacking_test: stacking_tests foreach stacking_test: stacking_tests

View File

@ -0,0 +1,36 @@
new_client x x11
create x/1 csd
resize x/1 300 400
show x/1
wait
assert_size x/1 300 400
resize x/1 200 300
wait
assert_size x/1 200 300
hide x/1
show x/1
wait
assert_size x/1 200 300
new_client w wayland
create w/1 csd
resize w/1 300 400
show w/1
wait
assert_size w/1 300 400
resize w/1 200 300
wait_reconfigure
assert_size w/1 200 300
hide w/1
show w/1
wait_reconfigure
assert_size w/1 200 300