summaryrefslogtreecommitdiff
path: root/py/tests/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/tests/test.py')
-rwxr-xr-xpy/tests/test.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/py/tests/test.py b/py/tests/test.py
new file mode 100755
index 0000000..9c23b5b
--- /dev/null
+++ b/py/tests/test.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python3
+
+import pykms
+from helpers import *
+
+card = pykms.Card()
+res = pykms.ResourceManager(card)
+conn = res.reserve_connector()
+crtc = res.reserve_crtc(conn)
+
+mode = conn.get_default_mode()
+
+fb = pykms.DumbFramebuffer(card, mode.hdisplay, mode.vdisplay, "XR24");
+pykms.draw_test_pattern(fb);
+
+crtc.set_mode(conn, fb, mode)
+
+input("press enter to exit\n")