From a4ab1c6f8c487c2f12f0c305d5c2e1c2731e53b6 Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Fri, 22 Nov 2024 08:35:22 -0700 Subject: [PATCH] Fix longevity results filenames 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. --- tests/scripts/run-tests-gcp-vm.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/scripts/run-tests-gcp-vm.sh b/tests/scripts/run-tests-gcp-vm.sh index 42a6d85c45..3cff298694 100755 --- a/tests/scripts/run-tests-gcp-vm.sh +++ b/tests/scripts/run-tests-gcp-vm.sh @@ -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