From e8690416321e532c26c91244d533c4b47ec37354 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Thu, 25 Apr 2019 17:40:42 +0200 Subject: [PATCH] [chore] kodev: make kodev test consistent with build & run (#4969) --- kodev | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/kodev b/kodev index 3757bae51..4e0510813 100755 --- a/kodev +++ b/kodev @@ -704,6 +704,7 @@ usage: test [front|base] OPTIONS: --tags=TAGS only run tests with given tags + --no-debug no debugging symbols (default for target devices) " while [[ "${1}" == '-'* ]]; do PARAM=$(echo "${1}" | awk -F= '{print $1}') @@ -712,6 +713,10 @@ OPTIONS: --graph) graph_memory=1 ;; + --no-debug) + export KODEBUG= + KODEBUG_NO_DEFAULT=1 + ;; --tags) opts="--tags=${VALUE}" ;; @@ -739,7 +744,7 @@ OPTIONS: } set -e - check_submodules && make + check_submodules && kodev-build setup_env make "${EMU_DIR}/.busted"