Skip to content

Commit

Permalink
Merge pull request #26 from judovana/npGcLogInTap
Browse files Browse the repository at this point in the history
excluded  gclog from tap file
  • Loading branch information
judovana authored Mar 3, 2024
2 parents c3ae9f5 + 9988f9d commit cfc8a17
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 cfc8a17

Please sign in to comment.