summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-07-04 11:58:37 -0600
committerSimon Glass <sjg@chromium.org>2016-07-14 20:40:24 -0600
commit2fedbaa4aea4f781863c9b11879ae4d43149c447 (patch)
treefb3ce5cbda4c886c9b26c3a5dd736c150975ff68 /test
parent97feca3325bb2065a7ef7d30e1f308b74f1fb33c (diff)
test/py: Handle testing with the sandbox_spl board
This board can sometimes be used for tests. Handle it the same way as sandbox. Note: I plan to drop the sandbox_spl board at some point and merge its features into sandbox. So this commit may not be necessary. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/py/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/conftest.py b/test/py/conftest.py
index 449f98bee3..050f6e409d 100644
--- a/test/py/conftest.py
+++ b/test/py/conftest.py
@@ -192,7 +192,7 @@ def pytest_configure(config):
for v in env_vars:
os.environ['U_BOOT_' + v.upper()] = getattr(ubconfig, v)
- if board_type == 'sandbox':
+ if board_type.startswith('sandbox'):
import u_boot_console_sandbox
console = u_boot_console_sandbox.ConsoleSandbox(log, ubconfig)
else: