From 625b3c2b7be083f700021300f9ae4c0d87f87c71 Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Fri, 22 Nov 2024 13:19:40 -0500 Subject: [PATCH] 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. --- 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