File: less-than-five-percent-failures

package info (click to toggle)
node-jsdoc2 2.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 708 kB
  • sloc: javascript: 4,319; xml: 279; makefile: 19; sh: 4
file content (6 lines) | stat: -rw-r--r-- 186 bytes parent folder | download
1
2
3
4
5
6
#! /bin/sh

jsdoc2 -T | tee /tmp/logfile
failures=$(grep "NOT OK " /tmp/logfile | wc -l)
tests=$(grep "... OK " /tmp/logfile | wc -l)
test 1 -eq $(echo "$failures < 0.05 * $tests" | bc)