Skip to content

Commit 21131ce

Browse files
committed
more corpus and C++14 for CI
1 parent f7dc8a7 commit 21131ce

File tree

3 files changed

+47
-1
lines changed

3 files changed

+47
-1
lines changed

.github/workflows/run_fuzzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
buildtype: 'boost'
6161
path: 'head'
6262
toolset: clang-18
63-
cxxstd: 17
63+
cxxstd: 14
6464
targets: libs/json/fuzzing//run
6565
- name: Pack the corpus
6666
working-directory: boost-root/libs/json/fuzzing/
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"b": true,
3+
"i64": -123,
4+
"u64": 123,
5+
"f": 123.45,
6+
"d": 0.9832747263462,
7+
"s": "text",
8+
"v1": [true, false],
9+
"v2": [-12, 89],
10+
"v3": [1000, 0],
11+
"a1": [true, false, true],
12+
"a2": [-1, 2, 3],
13+
"a3": [1, 2, 3],
14+
"m1": {"k": 42},
15+
"m2": {"k": "v"},
16+
"m3": {"k": 0.42},
17+
"t1": [true, 1, 2, 1.23, "s"],
18+
"t2": [["a", "b", "c"], [1.0, 0.1, 2.2], null],
19+
"t3": [[], []]
20+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"b": true,
3+
"i64": -123,
4+
"u64": 123,
5+
"f": 123.45,
6+
"d": 0.9832747263462,
7+
"s": "text",
8+
"v1": [true, false],
9+
"v2": [-12, 89],
10+
"v3": [1000, 0],
11+
"a1": [true, false, true],
12+
"a2": [-1, 2, 3],
13+
"a3": [1, 2, 3],
14+
"m1": {"k": 42},
15+
"m2": {"k": "v"},
16+
"m3": {"k": 0.42},
17+
"t1": [true, 1, 2, 1.23, "s"],
18+
"t2": [["a", "b", "c"], [1.0, 0.1, 2.2], null],
19+
"t3": [[], []],
20+
"ob": null,
21+
"oi": 123,
22+
"ou": 456,
23+
"od": 1.1,
24+
"os": null,
25+
"v": "text"
26+
}

0 commit comments

Comments
 (0)