From b11baff09f78a4a383f817ec35208ae8966ab832 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 2 Jan 2017 16:42:08 +0200 Subject: py: Reorganize source directory Separate the Python bindings sources from the test scripts. While at it, remove the unneeded run.sh script. Signed-off-by: Laurent Pinchart --- py/tests/test.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 py/tests/test.py (limited to 'py/tests/test.py') 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") -- cgit v1.2.3