diff options
author | Damien George <damien@micropython.org> | 2022-05-15 13:38:44 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-05-17 14:25:51 +1000 |
commit | f8d3956c63edd92934abcf2697c5b98842fbd18c (patch) | |
tree | bc06b463be996321aff0a11f5c9b1c5353cd1339 | |
parent | acfc3bbdf804eac7b230e1bba1546c86aec4e201 (diff) |
tools/ci.sh: Run full test suite on stackless and settrace builds.
Signed-off-by: Damien George <damien@micropython.org>
-rwxr-xr-x | tools/ci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 3d8cf9741..31f520a4f 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -546,7 +546,7 @@ function ci_unix_settrace_build { } function ci_unix_settrace_run_tests { - ci_unix_run_tests_helper "${CI_UNIX_OPTS_SYS_SETTRACE[@]}" + ci_unix_run_tests_full_helper standard "${CI_UNIX_OPTS_SYS_SETTRACE[@]}" } function ci_unix_settrace_stackless_build { @@ -555,7 +555,7 @@ function ci_unix_settrace_stackless_build { } function ci_unix_settrace_stackless_run_tests { - ci_unix_run_tests_helper "${CI_UNIX_OPTS_SYS_SETTRACE_STACKLESS[@]}" + ci_unix_run_tests_full_helper standard "${CI_UNIX_OPTS_SYS_SETTRACE_STACKLESS[@]}" } function ci_unix_macos_build { |