#!/bin/sh
# Copyright (C) 2015 - 2018 FARGOS Development, LLC
# Run gcov against named files
# $Id$

files="$@"
for f in ${files}
do
	fullPath=`readlink -m ${f}`
	pathToHere=`sbrel ${fullPath}`
	pathToDir=`dirname ${pathToHere}`

	

gcov --object-directory $STO/${pathToDir} --source-prefix $STS/cpp --source-prefix $BT_FINAL/src/cpp --preserve-paths --long-file-names --branch-counts --function-summaries --demangled-names "$@"
done
