summaryrefslogtreecommitdiff
path: root/third_party
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 /third_party
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 'third_party')
-rw-r--r--third_party/boringssl/test/x25519.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/boringssl/test/x25519.c b/third_party/boringssl/test/x25519.c
index 0b450bf357..dac8795b63 100644
--- a/third_party/boringssl/test/x25519.c
+++ b/third_party/boringssl/test/x25519.c
@@ -180,7 +180,7 @@ static void test_x25519_speed(void)
ccprintf("X25519 duration %lld us\n", (long long)(t1.val - t0.val));
}
-void run_test(void)
+void run_test(int argc, char **argv)
{
watchdog_reload();
/* do not check speed, just as a benchmark */