File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 7878 # Replace random port numbers by marker in testcase XML nodes to get stable test names
7979 sed -i ' /<testcase/ s/localhost:[0-9]\{2,5\}/localhost:PORT/g' " $TARGET_DIR /$AGGREGATED_FILE_NAME "
8080
81- # Add dd_tags[test.final_status] property to each testcase
82- xsl_file=" $( dirname " $0 " ) /add_final_status.xsl"
83- tmp_file=" $( mktemp) "
84- xsltproc --output " $tmp_file " " $xsl_file " " $TARGET_DIR /$AGGREGATED_FILE_NAME "
85- mv " $tmp_file " " $TARGET_DIR /$AGGREGATED_FILE_NAME "
86-
8781 if cmp -s " $RESULT_XML_FILE " " $TARGET_DIR /$AGGREGATED_FILE_NAME " ; then
8882 echo " "
8983 else
90- echo -n " (non-stable test names detected)"
84+ echo " (non-stable test names detected)"
9185 fi
86+
87+ echo " Add dd_tags[test.final_status] property to each testcase on $TARGET_DIR /$AGGREGATED_FILE_NAME "
88+ xsl_file=" $( dirname " $0 " ) /add_final_status.xsl"
89+ tmp_file=" $( mktemp) "
90+ xsltproc --huge --output " $tmp_file " " $xsl_file " " $TARGET_DIR /$AGGREGATED_FILE_NAME "
91+ mv " $tmp_file " " $TARGET_DIR /$AGGREGATED_FILE_NAME "
92+
9293done < <( find " ${TEST_RESULT_DIRS[@]} " -name \* .xml -print0)
You can’t perform that action at this time.
0 commit comments