Skip to content

Commit

Permalink
Fix longevity results filenames (#2807)
Browse files Browse the repository at this point in the history
Problem: Running the longevity tests would result in two different files being written.

Solution: For consistency with other tests, and to compile into one file, update the script to use the same filename.
  • Loading branch information
sjberman authored Nov 22, 2024
1 parent 1eeafe5 commit 625b3c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/scripts/run-tests-gcp-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ if [ "${STOP_LONGEVITY}" = "true" ]; then
version=${TAG}
fi

results="${SCRIPT_DIR}/../results/longevity/$version/$version.md"
runType=oss
if [ "${PLUS_ENABLED}" = "true" ]; then
runType=plus
fi

results="${SCRIPT_DIR}/../results/longevity/$version/$version-$runType.md"
printf "\n## Error Logs\n\n" >>"${results}"

## ngf error logs
Expand Down

0 comments on commit 625b3c2

Please sign in to comment.