diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-07-31 17:46:34 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-07-31 18:15:43 +0300 |
commit | 2ce4e51cfc5be4b4aeeae331f9accffad46e6e1b (patch) | |
tree | 05d19d2e0aa7b50f46f4523c954929ea75a7b704 /tests/kms-test-plane-position.py | |
parent | 986f7f64845736c6bdb7bf1380a1c3ac06db48fd (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-plane-position.py')
-rwxr-xr-x | tests/kms-test-plane-position.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/kms-test-plane-position.py b/tests/kms-test-plane-position.py index aceb849..5dfcfaa 100755 --- a/tests/kms-test-plane-position.py +++ b/tests/kms-test-plane-position.py @@ -123,4 +123,6 @@ class PlanePositionTest(kmstest.KMSTest): self.atomic_crtc_disable(crtc) self.success() -PlanePositionTest().execute() + +if __name__ == '__main__': + PlanePositionTest().execute() |