coverage.sh 163 B

123456789
  1. #!/bin/sh -eux
  2. cmake -DCOVERAGE=true .
  3. make
  4. make test
  5. pip install --user cpp-coveralls 'requests[security]'
  6. pwd
  7. coveralls --include 'src' --gcov-options '\-lp'