aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-bq.sh
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-07-26 13:33:42 +0200
committerTaras Madan <tarasmadan@google.com>2024-07-26 11:55:49 +0000
commit389c3e9cea0e1f2b34d475e858942ae9c6f12e05 (patch)
treed7dacbe33f60e68113ce585768c9f03a5c83d2f8 /tools/syz-bq.sh
parent2b4812a472dc793e954fa71a1b61773a428bdf88 (diff)
all: make coverage-merger client name configurable
Diffstat (limited to 'tools/syz-bq.sh')
-rwxr-xr-xtools/syz-bq.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/syz-bq.sh b/tools/syz-bq.sh
index cc45be917..f15de82cf 100755
--- a/tools/syz-bq.sh
+++ b/tools/syz-bq.sh
@@ -5,7 +5,7 @@
set -e # exit on any problem
set -o pipefail
-while getopts w:d:t:n:r:b: option
+while getopts w:d:t:n:r:b:c: option
do
case "${option}"
in
@@ -15,6 +15,7 @@ do
n)namespace=${OPTARG};;
r)repo=${OPTARG};;
b)branch=${OPTARG};;
+ c)client_name=${OPTARG};;
esac
done
@@ -128,6 +129,7 @@ go run ./tools/syz-covermerger/ -workdir $workdir \
-branch $branch \
-commit $base_commit \
-to-dashapi https://syzkaller.appspot.com \
+ -dashboard-client-name $client_name \
-namespace $namespace \
-duration $duration \
-date-to $to_date \