summaryrefslogtreecommitdiff
path: root/test/py/conftest.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-02-19 20:48:11 -0500
committerTom Rini <trini@konsulko.com>2019-02-19 20:48:11 -0500
commit97f9830849c64d60d0cf2fd69e87dfe4557d02a4 (patch)
tree7af7b4e87637a61be6ce762d2dc99bcdd503b9be /test/py/conftest.py
parentb78a9e2212d4d15fd16af41ae33d05a5c33954de (diff)
parent06d01e6601203644b403cc8d909fe2a1990e5468 (diff)
Merge branch '2019-02-19-master-imports'
- Convert some OMAP3 platforms to DM+SPL - Various minor fixes - Updates for hikey, DaVinci, am57xx platforms, - Make FAT use less memory
Diffstat (limited to 'test/py/conftest.py')
-rw-r--r--test/py/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/conftest.py b/test/py/conftest.py
index 5c658b8c484..e40cbf0ba12 100644
--- a/test/py/conftest.py
+++ b/test/py/conftest.py
@@ -117,8 +117,8 @@ def pytest_configure(config):
mkdir_p(persistent_data_dir)
gdbserver = config.getoption('gdbserver')
- if gdbserver and board_type != 'sandbox':
- raise Exception('--gdbserver only supported with sandbox')
+ if gdbserver and not board_type.startswith('sandbox'):
+ raise Exception('--gdbserver only supported with sandbox targets')
import multiplexed_log
log = multiplexed_log.Logfile(result_dir + '/test-log.html')