File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,12 @@ Markus Teufelberger
9
9
advantage is that code coverage results are produced more quickly in
10
10
this mode since AFL can generate test cases - at least initially - much
11
11
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.
Original file line number Diff line number Diff line change
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
+
1
12
afl-cov-0.6 (06/05/2016):
2
13
- (Markus Teufelberger) Add --cover-corpus argument so that code coverage
3
14
is measured only after all new AFL test cases are executed. The main
Original file line number Diff line number Diff line change 1
- 0.6
1
+ 0.6.1
Original file line number Diff line number Diff line change 2
2
#
3
3
# File: afl-cov
4
4
#
5
- # Version: 0.6
5
+ # Version: 0.6.1
6
6
#
7
7
# Purpose: Perform lcov coverage diff's against each AFL queue file to see
8
8
# new functions and line coverage evolve from an AFL fuzzing cycle.
44
44
except ImportError :
45
45
import subprocess
46
46
47
- __version__ = '0.6'
47
+ __version__ = '0.6.1 '
48
48
49
49
NO_OUTPUT = 0
50
50
WANT_OUTPUT = 1
You can’t perform that action at this time.
0 commit comments