diff options
| author | Tom Rini <[email protected]> | 2026-01-12 15:12:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-01-12 15:12:47 -0600 |
| commit | 21e64d0c925eb246d90b7692ce1243d2b79cd424 (patch) | |
| tree | 546388ce3ca4d5919cfdddfe941e86e82d1de106 /test | |
| parent | 476c59be74c2eadcd32fc3032fb7ac362f02e441 (diff) | |
| parent | 487ab1c991d77b0236b30f55d7c2f89e3b948ec1 (diff) | |
Merge patch series "a few test.py improvements"
David Lechner <[email protected]> says:
While trying to run the test suite for the first time, I encountered a
few minor issues. Here are a few patches to address them.
Link: https://lore.kernel.org/r/20260105-a-few-test-py-improvements-v3-0-fea38243ca5b@baylibre.com
Diffstat (limited to 'test')
| -rw-r--r-- | test/py/conftest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/py/conftest.py b/test/py/conftest.py index 8ce680a92a0..37d9347a85f 100644 --- a/test/py/conftest.py +++ b/test/py/conftest.py @@ -28,9 +28,10 @@ import sys from spawn import BootFail, Timeout, Unexpected, handle_exception import time -# Globals: The HTML log file, and the top-level fixture +# Globals: The HTML log file, the top-level fixture and the config container log = None ubman_fix = None +ubconfig = None TEST_PY_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -613,7 +614,7 @@ def show_timings(): if too_long: show_bar(f'>{get_time_delta(max_dur)}', too_long_msecs, too_long) log.info(buf.getvalue()) - if ubconfig.timing: + if ubconfig and ubconfig.timing: print(buf.getvalue(), end='') |
