Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(2)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: testing/libfuzzer/tests/check_seed_corpus_archive.py
Issue
2610323002
:
[libfuzzer] support multiple seed_corpus directories. (Closed)
Patch Set: Add missing scripts
Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
testing/libfuzzer/archive_corpus.py
testing/libfuzzer/efficient_fuzzer.md
testing/libfuzzer/fuzzer_test.gni
testing/libfuzzer/tests/BUILD.gn
testing/libfuzzer/tests/check_seed_corpus_archive.py
testing/libfuzzer/tests/fuzzer_launcher_test.cc
testing/libfuzzer/tests/test_corpus/f1
testing/libfuzzer/tests/test_corpus/f2
testing/libfuzzer/tests/test_corpus/f3
testing/libfuzzer/tests/test_corpus_2/f1
testing/libfuzzer/tests/test_corpus_2/test_corpus_subdir/f1
View unified diff
|
Download patch
« no previous file with comments
|
« testing/libfuzzer/tests/BUILD.gn
('k') |
testing/libfuzzer/tests/fuzzer_launcher_test.cc »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
#!/usr/bin/python2
2
# Copyright 2017 The Chromium Authors. All rights reserved.
3
# Use of this source code is governed by a BSD-style license that can be
4
# found in the LICENSE file.
5
6
# Script that prints out number of files in given zip-archive. Used for testing.
7
8
import ConfigParser
9
import os
10
import sys
11
import zipfile
12
13
seed_corpus_archive_path = os.path.join(os.path.dirname(sys.argv[0]),
14
sys.argv[1])
15
16
if not os.path.exists(seed_corpus_archive_path):
17
sys.exit(-1)
18
19
archive = zipfile.ZipFile(seed_corpus_archive_path)
20
sys.stdout.write('%d\n' % len(archive.namelist()))
OLD
NEW
« no previous file with comments
|
« testing/libfuzzer/tests/BUILD.gn
('k') |
testing/libfuzzer/tests/fuzzer_launcher_test.cc »
('j') |
no next file with comments »
Issue 2610323002: [libfuzzer] support multiple seed_corpus directories. (Closed)
Created 3 years, 11 months ago by mmoroz
Modified 3 years, 10 months ago
Reviewers: aizatsky, inferno, Oliver Chang
Base URL:
Comments: 0
This is Rietveld
408576698