Skip to content

Commit 3689705

Browse files
authored
Merge pull request #1 from mrash/master
Merge upstream changes
2 parents 2484cb6 + 9649bdf commit 3689705

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CREDITS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,12 @@ Markus Teufelberger
99
advantage is that code coverage results are produced more quickly in
1010
this mode since AFL can generate test cases - at least initially - much
1111
faster than code coverage can be calculated for each test case.
12+
13+
James Steele
14+
- Submitted a patch to add the '--follow' command line argument which
15+
provides an option identical to that available on lcov that instructs the
16+
search for .da files to follow symlinks (which are not traversed by
17+
default).
18+
19+
Denis Kasak
20+
- Submitted a patch to correct a variable naming bug.

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
afl-cov-0.6.1 (11/27/2017):
2+
- (James Steele) Add the '--follow' command line argument which provides an
3+
option identical to that available on lcov that instructs the search for
4+
.da files to follow symlinks (which are not traversed by default).
5+
- Add the '--disable-gcov-check' argument so that the check for whether
6+
the target binary has been compiled with code coverage support can be
7+
disabled.
8+
- (Denis Kasak) Fix incorrect variable name in search_cov.
9+
- Bug fix noted by @umlaeute be more permissive with instrumented binaries
10+
check.
11+
112
afl-cov-0.6 (06/05/2016):
213
- (Markus Teufelberger) Add --cover-corpus argument so that code coverage
314
is measured only after all new AFL test cases are executed. The main

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6
1+
0.6.1

afl-cov

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# File: afl-cov
44
#
5-
# Version: 0.6
5+
# Version: 0.6.1
66
#
77
# Purpose: Perform lcov coverage diff's against each AFL queue file to see
88
# new functions and line coverage evolve from an AFL fuzzing cycle.
@@ -44,7 +44,7 @@ try:
4444
except ImportError:
4545
import subprocess
4646

47-
__version__ = '0.6'
47+
__version__ = '0.6.1'
4848

4949
NO_OUTPUT = 0
5050
WANT_OUTPUT = 1

0 commit comments

Comments
 (0)