tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit d00a26f8602f615f241895dd2a0d69cb74961114
parent 7bc85d820461aab3855d2493cefd2e7c72e13184
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue,  3 Oct 2017 08:05:46 -0400

Merge remote-tracking branch 'catalyst-oniongit/bug23741'

Diffstat:
Achanges/bug23741 | 4++++
Mscripts/test/coverage | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/bug23741 b/changes/bug23741 @@ -0,0 +1,4 @@ + o Minor bugfixes (testing): + - Prevent scripts/test/coverage from attempting to move gcov + output to the root directory. Fixes bug 23741; bugfix on + 0.2.5.1-alpha. diff --git a/scripts/test/coverage b/scripts/test/coverage @@ -29,7 +29,7 @@ for fn in src/or/*.c src/common/*.c; do gcov -o $on $fn if [ -e $GC ] then - if [ -n $dst ] + if [ -d "$dst" ] then mv $GC $dst/$GC fi