summaryrefslogtreecommitdiff
path: root/test/mutex.c
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 /test/mutex.c
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 'test/mutex.c')
-rw-r--r--test/mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mutex.c b/test/mutex.c
index 266b94ac31..d5e7e09c51 100644
--- a/test/mutex.c
+++ b/test/mutex.c
@@ -109,7 +109,7 @@ int mutex_main_task(void *unused)
return EC_SUCCESS;
}
-void run_test(void)
+void run_test(int argc, char **argv)
{
wait_for_task_started();
task_wake(TASK_ID_MTX1);