Skip to content

Commit 625b3c2

Browse files
authored
Fix longevity results filenames (#2807)
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.
1 parent 1eeafe5 commit 625b3c2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/scripts/run-tests-gcp-vm.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ if [ "${STOP_LONGEVITY}" = "true" ]; then
3535
version=${TAG}
3636
fi
3737

38-
results="${SCRIPT_DIR}/../results/longevity/$version/$version.md"
38+
runType=oss
39+
if [ "${PLUS_ENABLED}" = "true" ]; then
40+
runType=plus
41+
fi
42+
43+
results="${SCRIPT_DIR}/../results/longevity/$version/$version-$runType.md"
3944
printf "\n## Error Logs\n\n" >>"${results}"
4045

4146
## ngf error logs

0 commit comments

Comments
 (0)