Mercurial > hg
annotate contrib/fuzz/dirs_corpus.py @ 44009:e685fac56693
match: resolve filesets against the passed `cwd`, not the current one
This allows filesets to be resolved relative to `repo.root`, the same as other
patterns are since f02d3c0eed18. The current example in contrib/ wasn't working
from the tests directory because of this.
Differential Revision: https://phab.mercurial-scm.org/D7570
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Fri, 06 Dec 2019 20:40:02 -0500 |
parents | b7af8a02a304 |
children | 6000f5b25c9b |
rev | line source |
---|---|
43844
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
1 from __future__ import absolute_import, print_function |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
2 |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
3 import argparse |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
4 import zipfile |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
5 |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
6 ap = argparse.ArgumentParser() |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
7 ap.add_argument("out", metavar="some.zip", type=str, nargs=1) |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
8 args = ap.parse_args() |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
9 |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
10 with zipfile.ZipFile(args.out[0], "w", zipfile.ZIP_STORED) as zf: |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
11 zf.writestr( |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
12 "greek-tree", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
13 "\n".join( |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
14 [ |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
15 "iota", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
16 "A/mu", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
17 "A/B/lambda", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
18 "A/B/E/alpha", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
19 "A/B/E/beta", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
20 "A/D/gamma", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
21 "A/D/G/pi", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
22 "A/D/G/rho", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
23 "A/D/G/tau", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
24 "A/D/H/chi", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
25 "A/D/H/omega", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
26 "A/D/H/psi", |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
27 ] |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
28 ), |
b7af8a02a304
fuzz: add a seed corpus for the dirs fuzzer
Augie Fackler <augie@google.com>
parents:
diff
changeset
|
29 ) |