Skip to content

Commit

Permalink
excluded gclog from tap file
Browse files Browse the repository at this point in the history
sometimes to big, sometimes several of them (easy to merge, but...), sometimes with buggy content
also exclude dit from both headers, as if there is more of them, they will split tmultiline
  • Loading branch information
judovana committed Mar 3, 2024
1 parent c3ae9f5 commit 9988f9d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function junitResults() {
else
fileName1=`ls outlog-$name-*`
fileName2=`ls gclog-$name-*`
printXmlTest churn $name $DURATION $fileName1 "$fileName1, outlog-$name-*, $fileName2 and gclog-$name-* in gclogs${NOCOMP}${STAMP}.tar.gz" >> ${resultsXmlFile}
printXmlTest churn $name $DURATION $fileName1 "$fileName1, outlog-$name-*, gclog-$name-* in gclogs${NOCOMP}${STAMP}.tar.gz" >> ${resultsXmlFile}
fi
done
printXmlFooter >> ${resultsXmlFile}
Expand Down Expand Up @@ -106,10 +106,11 @@ function tapResults() {
else
tapTestStart "not ok" "$counter" "$name" >> ${resultsTapFile}
fi
tapLine "info" "churn $name duration of ${DURATION}s see $fileName1, outlog-$name-*, $fileName2 and gclog-$name-* in gclogs${NOCOMP}${STAMP}.tar.gz" >> ${resultsTapFile}
tapLine "info" "churn $name duration of ${DURATION}s see $fileName1, outlog-$name-*, gclog-$name-* in gclogs${NOCOMP}${STAMP}.tar.gz" >> ${resultsTapFile}
tapLine "duration_ms" "${DURATION}000" >> ${resultsTapFile}
tapFromFile "$fileName1" "outlog-$name-*">> ${resultsTapFile}
tapFromFile "$fileName2" "gclog-$name-*">> ${resultsTapFile}
# gclog now disabled - sometimes to big, sometimes several of them (easy to merge, but...), sometimes with buggy content
#tapFromFile "$fileName2" "gclog-$name-*">> ${resultsTapFile}
tapTestEnd "$fileName">> ${resultsTapFile}
done
rm -v $taptap
Expand Down

0 comments on commit 9988f9d

Please sign in to comment.