Skip to content

Commit 8004152

Browse files
committed
test: Run fuzzers with faulthandler enabled
[ci skip]
1 parent bbb6b8d commit 8004152

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/fuzz_fusil/runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def setupProject(self):
167167

168168
process = ProjectProcess(
169169
self.project,
170-
['python3', '-m', 'wpull',
170+
['python3', '-X', 'faulthandler', '-m', 'wpull',
171171
'127.0.0.1:8898',
172172
'--timeout', '2.0',
173173
'--tries', '1',

test/fuzz_fusil_2/runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def setupProject(self):
5151
process = ProjectProcess(
5252
self.project,
5353
[
54-
'python3', '-m', 'wpull',
54+
'python3', '-X', 'faulthandler', '-m', 'wpull',
5555
'127.0.0.1:{0}'.format(port),
5656
'--timeout', '5',
5757
'--warc-file', 'fusil-test',

0 commit comments

Comments
 (0)