perf test: test_intel_pt.sh: Stop using expr

As suggested by shellcheck, stop using expr.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Link: https://lore.kernel.org/r/20220912083412.7058-5-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Adrian Hunter 2022-09-12 11:34:05 +03:00 committed by Arnaldo Carvalho de Melo
parent 3f79fff8bd
commit 202d039413
1 changed files with 3 additions and 3 deletions

View File

@ -64,14 +64,14 @@ test_system_wide_side_band()
count_result()
{
if [ $1 -eq 2 ] ; then
skip_cnt=`expr ${skip_cnt} \+ 1`
skip_cnt=$((skip_cnt + 1))
return
fi
if [ $1 -eq 0 ] ; then
ok_cnt=`expr ${ok_cnt} \+ 1`
ok_cnt=$((ok_cnt + 1))
return
fi
err_cnt=`expr ${err_cnt} \+ 1`
err_cnt=$((err_cnt + 1))
}
test_system_wide_side_band