mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
14 lines
346 B
Bash
Executable File
14 lines
346 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2013 The Tor Project, Inc.
|
|
# See LICENSE for licensing information.
|
|
|
|
# coverage -- run gcov on the appropriate set of object files to extract
|
|
# coverage information.
|
|
|
|
for fn in src/or/*.c src/common/*.c; do
|
|
BN=`basename $fn`
|
|
DN=`dirname $fn`
|
|
F=`echo $BN | sed -e 's/\.c$//;'`
|
|
gcov -o $DN/src_*$F.o $fn
|
|
done
|