blob: a00f8f13155a05cec3f2d099e74e50a5e9f759d7 [file] [log] [blame]
spirosmastorakis15ebb1e2016-01-25 21:20:25 -08001#!/usr/bin/env bash
2set -x
3set -e
4
5JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
6source "$JDIR"/util.sh
7
8if [[ "$JOB_NAME" == *"code-coverage" ]]; then
9 BASE="`pwd | sed -e 's|/|\\\/|g'`\\"
10 (cd build && gcovr -x -f $BASE/core -f $BASE/daemon -f $BASE/rib -r ../ -o coverage.xml ./)
11fi