aboutsummaryrefslogtreecommitdiff
path: root/zephyr-upstream/submit_for_testing.py
diff options
context:
space:
mode:
authorChase Qi <chase.qi@linaro.org>2017-11-01 17:09:04 +0800
committerFathi Boudra <fathi.boudra@linaro.org>2017-11-01 09:51:38 +0000
commit8b52e47c31d487f0b63baa1a9c0e1b1778959648 (patch)
treefdb35f1d4bfb072f553c8d1b0df1c2f10d43ad5c /zephyr-upstream/submit_for_testing.py
parentb403b269594dfe5c0b9ddfab99bfb24539a27197 (diff)
zephyr-upstream: exclude more tests
* Some performance tests use 'benchmark' instead of 'benchmarks' in test path, exclude 'benchmark' will cover both cases. * net test is broken on frdm-kw41z, exclude them on the platform. * Put more tests that don't produce useful output to excluded test list. Change-Id: I87e0b5e73ca25b443a0ee4e37adb6ca724e028f1 Signed-off-by: Chase Qi <chase.qi@linaro.org>
Diffstat (limited to 'zephyr-upstream/submit_for_testing.py')
-rw-r--r--zephyr-upstream/submit_for_testing.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/zephyr-upstream/submit_for_testing.py b/zephyr-upstream/submit_for_testing.py
index bb26ab926c..33aa258656 100644
--- a/zephyr-upstream/submit_for_testing.py
+++ b/zephyr-upstream/submit_for_testing.py
@@ -35,6 +35,16 @@ excluded_tests = [
'tests/kernel/test_build/test_runtime_nmi/zephyr.bin',
'tests/legacy/kernel/test_critical/test/zephyr.bin',
'tests/legacy/kernel/test_sleep/test/zephyr.bin',
+ 'tests/ztest/test/base/test_verbose_1/zephyr.bin',
+ 'tests/drivers/quark_clock/test_quark_clock_build/zephyr.bin',
+ 'tests/drivers/dma/test_loop_transfer/test/zephyr.bin',
+ 'tests/drivers/dma/test_chan_blen_transfer/test_dma_shell/zephyr.bin',
+ 'tests/power/power_states/test_socwatch/zephyr.bin',
+ 'tests/kernel/mem_protect/app_memory/test/zephyr.bin',
+ 'tests/kernel/fatal/test/zephyr.bin',
+ 'tests/bluetooth/shell/test_br/zephyr.bin',
+ 'tests/bluetooth/shell/test_nble/zephyr.bin',
+ 'tests/bluetooth/shell/test/zephyr.bin'
]
# Templates base path
@@ -138,10 +148,13 @@ def main():
test_list = [test.split('/', 2)[-1] for test in test_list]
test_list = [test for test in test_list if test not in excluded_tests]
# Exclude benchmarks which require different parse pattern by test.
- test_list = [test for test in test_list if 'benchmarks' not in test]
+ test_list = [test for test in test_list if 'benchmark' not in test]
# Don't run bluetooth test on qemu device.
if args.device_type == 'qemu':
test_list = [test for test in test_list if 'bluetooth' not in test]
+ # net test is broken on frdm-kw41z.
+ if args.device_type == 'frdm-kw41z':
+ test_list = [test for test in test_list if 'tests/net' not in test]
for test in test_list:
replace_dict = dict(
# Test name example: kernel-pthread-test