Skip to content

Commit a8b8290

Browse files
committed
fix
Signed-off-by: Yiqing Yan <[email protected]>
1 parent 13f9ec8 commit a8b8290

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jenkins/L0_Test.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ def reusePassedTests(pipeline, llmSrc, reusedArtifactPath, stageName, testListFi
10851085
--input-file=${reusedPath}/${stageName}/results.xml \
10861086
--output-file=${passedTestsFile}
10871087
"""
1088-
sh "The passed tests are: $(cat ${passedTestsFile})"
1088+
sh "The passed tests are: \$(cat ${passedTestsFile})"
10891089

10901090
// Copy the original test file to a new file
10911091
sh "cp ${testListFile} original_${testListFile}"
@@ -1096,7 +1096,7 @@ def reusePassedTests(pipeline, llmSrc, reusedArtifactPath, stageName, testListFi
10961096
--input-file=${testListFile} \
10971097
--passed-tests-file=${passedTestsFile}
10981098
"""
1099-
sh "The test list after removing passed tests is: $(cat ${testListFile})"
1099+
sh "The test list after removing passed tests is: \$(cat ${testListFile})"
11001100
} catch (InterruptedException e) {
11011101
throw e
11021102
} catch (Exception e) {

0 commit comments

Comments
 (0)