mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
d2ebfd0519
Screw the description like that inbred T3Q
13 lines
243 B
Bash
13 lines
243 B
Bash
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
source ./benchs/run_common.sh
|
|
|
|
set -eufo pipefail
|
|
|
|
for s in 1 8 64 512 2048 4095; do
|
|
for b in no-helper helper; do
|
|
summarize ${b}-${s} "$($RUN_BENCH --cmp-str-len=$s strncmp-${b})"
|
|
done
|
|
done
|