Parcourir la source

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

Nick Mathewson il y a 6 ans
Parent
commit
d00a26f860
2 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 4 0
      changes/bug23741
  2. 1 1
      scripts/test/coverage

+ 4 - 0
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.

+ 1 - 1
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