mirror of
https://github.com/yshui/picom.git
synced 2025-10-30 23:46:46 -04:00
tests: put test cases into their own folder
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
8628e498c5
commit
bfb6cad648
2 changed files with 1 additions and 1 deletions
18
tests/testcases/basic.py
Executable file
18
tests/testcases/basic.py
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import xcffib.xproto as xproto
|
||||
import xcffib
|
||||
|
||||
conn = xcffib.connect()
|
||||
setup = conn.get_setup()
|
||||
root = setup.roots[0].root
|
||||
visual = setup.roots[0].root_visual
|
||||
depth = setup.roots[0].root_depth
|
||||
|
||||
wid = conn.generate_id()
|
||||
conn.core.CreateWindowChecked(depth, wid, root, 0, 0, 100, 100, 0, xproto.WindowClass.InputOutput, visual, 0, []).check()
|
||||
conn.core.MapWindowChecked(wid).check()
|
||||
conn.core.UnmapWindowChecked(wid).check()
|
||||
conn.core.DestroyWindowChecked(wid).check()
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue