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-modes.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-modes.py')
-rwxr-xr-x | tests/kms-test-modes.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/kms-test-modes.py b/tests/kms-test-modes.py index 14463ad..d857dd6 100755 --- a/tests/kms-test-modes.py +++ b/tests/kms-test-modes.py @@ -65,4 +65,6 @@ class ModesTest(kmstest.KMSTest): else: self.success() -ModesTest().execute() + +if __name__ == '__main__': + ModesTest().execute() |