Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix: adjust collect_measurements to new directory layout #13423

Merged
merged 1 commit into from
Feb 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/performance/collect_measurements
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ timestamp="$(sed -n -e 's/.*Timestamp: \+\(.*\)/\1/p' revision.log)"
# list of values:
#

output="$(for i in tests/performance/*/output tests/performance/*/mpirun*/output
output="$(for i in \
tests/performance/*/output \
tests/performance/*/mpirun*/output \
tests/performance/*/mpirun*/threads*/output \
tests/performance/*/threads*/output
do
# Skip output files that have fewer than 3 lines
if [[ "$(wc -l $i 2> /dev/null | awk '{ print $1 }')" -le 2 ]]; then
Expand Down