aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xzephyr-upstream/builders.sh1
-rw-r--r--zephyr-upstream/submit_for_testing.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/zephyr-upstream/builders.sh b/zephyr-upstream/builders.sh
index 34daca86f0..c8d460c418 100755
--- a/zephyr-upstream/builders.sh
+++ b/zephyr-upstream/builders.sh
@@ -75,6 +75,7 @@ time ${ZEPHYR_BASE}/scripts/sanitycheck \
--build-only \
--outdir ${OUTDIR} \
--enable-slow \
+ --subset=1/20 \
-x=USE_CCACHE=${USE_CCACHE}
cd ${ZEPHYR_BASE}
diff --git a/zephyr-upstream/submit_for_testing.py b/zephyr-upstream/submit_for_testing.py
index 50fd93c1a4..222c391edf 100644
--- a/zephyr-upstream/submit_for_testing.py
+++ b/zephyr-upstream/submit_for_testing.py
@@ -68,7 +68,7 @@ def file_list(path, fname):
def build_only():
# Parse testcase.yaml to exclude build only tests.
# testcase.yaml file path example: tests/drivers/build_all/testcase.yaml
- testcases_yaml = file_list('tests', 'testcase.yaml')
+ testcases_yaml = file_list('zephyr/tests', 'testcase.yaml')
build_only_tests = []
for testcase_yaml in testcases_yaml:
with open(testcase_yaml) as f: