Skip to content

Commit a36097b

Browse files
craig[bot]erikgrinaker
andcommitted
Merge #119360
119360: scripts: fix filename pattern in `roachtest-gobench` r=erikgrinaker a=erikgrinaker Epic: none Release note: None Co-authored-by: Erik Grinaker <[email protected]>
2 parents b8cca1b + 64cd6d6 commit a36097b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/roachtest-gobench.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ "$#" -ne 1 ]; then
88
exit 1
99
fi
1010

11-
for file in $(find $1 -name test.log -o -name '*_ycsb.log' -o -name '*_kv.log'); do
11+
for file in $(find $1 -name test.log -o -name 'run_*workload-run-*.log'); do
1212
name=$(dirname $(dirname $(realpath --relative-to=$1 $file)))
1313
grep -h -A1 __result $file \
1414
| grep -v '^--$' | grep -v __result | \

0 commit comments

Comments
 (0)