summaryrefslogtreecommitdiff
path: root/core/host
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2020-05-19 14:05:12 -0700
committerCommit Bot <commit-bot@chromium.org>2020-05-30 05:16:26 +0000
commit99434726be49517332272752af6dffefdea7bb8a (patch)
tree0a4ae6f5e1e847a1b13d63310e31b297c9f6d387 /core/host
parent3590a14bcf9a1a575d41464285efe981f21dfdb6 (diff)
downloadchrome-ec-99434726be49517332272752af6dffefdea7bb8a.tar.gz
test: Pass commandline arguments to run_test
run_test is called by the "runtest" console command. Console commands can take arguments, so pass along the arguments to run_test to allow parameters to be passed to run_test. The following command was used for automatic replacement: git grep --name-only 'void run_test(void)' |\ xargs sed -i 's#void run_test(void)#void run_test(int argc, char **argv)##' BRANCH=none BUG=b:155897971 TEST=make buildall -j TEST=Build and flash flash_write_protect test > runtest 1 Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: Ib20b955d5ec6b98f525c94c24aadefd7a6a320a5 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2209418 Reviewed-by: Yicheng Li <yichengli@chromium.org> Commit-Queue: Yicheng Li <yichengli@chromium.org> Tested-by: Yicheng Li <yichengli@chromium.org>
Diffstat (limited to 'core/host')
-rw-r--r--core/host/task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/host/task.c b/core/host/task.c
index 682b1bb123..9f52fad340 100644
--- a/core/host/task.c
+++ b/core/host/task.c
@@ -91,7 +91,7 @@ void __idle(void *d)
void _run_test(void *d)
{
- run_test();
+ run_test(0, NULL);
}
#define TASK(n, r, d, s) {r, d},