summaryrefslogtreecommitdiff
path: root/tests/kms-test-modeset.py
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-07-31 17:46:34 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-07-31 18:15:43 +0300
commit2ce4e51cfc5be4b4aeeae331f9accffad46e6e1b (patch)
tree05d19d2e0aa7b50f46f4523c954929ea75a7b704 /tests/kms-test-modeset.py
parent986f7f64845736c6bdb7bf1380a1c3ac06db48fd (diff)
tests: Only call execute() if the test is run directly
Only run a test automatically if the Python test script is executed directly. This will allow importing tests as modules in a test runner. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'tests/kms-test-modeset.py')
-rwxr-xr-xtests/kms-test-modeset.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/kms-test-modeset.py b/tests/kms-test-modeset.py
index e8b3d9a..fd0c4ac 100755
--- a/tests/kms-test-modeset.py
+++ b/tests/kms-test-modeset.py
@@ -58,4 +58,6 @@ class ModeSetTest(kmstest.KMSTest):
else:
self.success()
-ModeSetTest().execute()
+
+if __name__ == '__main__':
+ ModeSetTest().execute()