Skip to content

Commit

Permalink
Merge #119360
Browse files Browse the repository at this point in the history
119360: scripts: fix filename pattern in `roachtest-gobench` r=erikgrinaker a=erikgrinaker

Epic: none
Release note: None

Co-authored-by: Erik Grinaker <[email protected]>
  • Loading branch information
craig[bot] and erikgrinaker committed Feb 19, 2024
2 parents b8cca1b + 64cd6d6 commit a36097b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/roachtest-gobench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ "$#" -ne 1 ]; then
exit 1
fi

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

0 comments on commit a36097b

Please sign in to comment.