summaryrefslogtreecommitdiff
path: root/tests/kms-test-crc.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-crc.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-crc.py')
-rwxr-xr-xtests/kms-test-crc.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/kms-test-crc.py b/tests/kms-test-crc.py
index 01f9606..b1af65d 100755
--- a/tests/kms-test-crc.py
+++ b/tests/kms-test-crc.py
@@ -230,4 +230,6 @@ class CRCTest(kmstest.KMSTest):
self.atomic_crtc_disable(crtc)
-CRCTest().execute()
+
+if __name__ == '__main__':
+ CRCTest().execute()