diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-13 01:21:58 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-13 01:21:58 +0100 |
commit | 53fc2827bd2163cf0bc5a3876e9fb9f51478d652 (patch) | |
tree | 43dce17876b7c5cc7e65ac4c45939c8717288b24 | |
parent | e3a6410b72e9eabc942cd2d59882b131796f261e (diff) | |
download | jenkins.debian.net-53fc2827bd2163cf0bc5a3876e9fb9f51478d652.tar.xz |
reproducible fedora rpms/archlinux: compare percentage to what's been tested
-rwxr-xr-x | bin/reproducible_html_archlinux.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_html_rpms.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 1ad7bd64..34075532 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -118,7 +118,7 @@ for REPOSITORY in $ARCHLINUX_REPOS ; do echo " <tr>" >> $HTML_REPOSTATS echo " <td>$REPOSITORY</td><td>$NR_TESTED</td>" >> $HTML_REPOSTATS for i in $NR_GOOD $NR_FTBR $NR_FTBFS $NR_DEPWAIT $NR_404 $NR_UNKNOWN ; do - PERCENT_i=$(echo "scale=1 ; ($i*100/$TOTAL)" | bc) + PERCENT_i=$(echo "scale=1 ; ($i*100/$TESTED)" | bc) if [ "$PERCENT_i" != "0" ] ; then echo " <td>$i ($PERCENT_i%)</td>" >> $HTML_REPOSTATS else diff --git a/bin/reproducible_html_rpms.sh b/bin/reproducible_html_rpms.sh index 60596dbf..8cef49d5 100755 --- a/bin/reproducible_html_rpms.sh +++ b/bin/reproducible_html_rpms.sh @@ -95,7 +95,7 @@ fi echo " <tr>" >> $HTML_RPM_STATS echo " <td>$RELEASE ($ARCH)</td><td>$NR_TESTED</td>" >> $HTML_RPM_STATS for i in $NR_GOOD $NR_FTBR $NR_FTBFS $NR_DEPWAIT $NR_404 $NR_UNKNOWN ; do - PERCENT_i=$(echo "scale=1 ; ($i*100/$TOTAL)" | bc) + PERCENT_i=$(echo "scale=1 ; ($i*100/$TESTED)" | bc) if [ "$PERCENT_i" != "0" ] ; then echo " <td>$i ($PERCENT_i%)</td>" >> $HTML_RPM_STATS else |