forked from camshaft/bolero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
209 lines (196 loc) · 4.75 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
SANITIZER ?= NONE
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
FUZZERS := libfuzzer afl
else
FUZZERS := libfuzzer honggfuzz afl
endif
test: unit-tests test_fuzzers examples-tests
examples-tests: test_basic_example test_workspace_example
test_basic_example:
@$(MAKE) test_example \
MANIFEST_PATH=examples/basic/Cargo.toml \
TEST_THREADS=""
@$(MAKE) test_example \
MANIFEST_PATH=examples/basic/Cargo.toml \
TEST_THREADS="--test-threads=1"
test_workspace_example:
@$(MAKE) test_example \
MANIFEST_PATH=examples/workspace/Cargo.toml \
TEST_THREADS=""
@$(MAKE) test_example \
MANIFEST_PATH=examples/workspace/Cargo.toml \
TEST_THREADS="--test-threads=1"
test_example:
@RUST_BACKTRACE=1 cargo test \
--manifest-path $(MANIFEST_PATH) \
-- \
--nocapture $(TEST_THREADS)
@RUST_BACKTRACE=1 cargo test \
--release \
--manifest-path $(MANIFEST_PATH) \
-- \
--nocapture $(TEST_THREADS)
unit-tests:
@cargo test
test_fuzzers: $(FUZZERS)
libfuzzer honggfuzz:
@cargo run \
--features $@ \
test \
fuzz_bytes \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@cargo run \
--features $@ \
reduce \
fuzz_bytes \
--manifest-path examples/basic/Cargo.toml \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@cargo run \
--features $@ \
test \
fuzz_generator \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release true \
--sanitizer $(SANITIZER)
@cargo run \
--features $@ \
reduce \
fuzz_generator \
--manifest-path examples/basic/Cargo.toml \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@cargo run \
--features $@ \
test \
fuzz_operations \
--manifest-path examples/basic/Cargo.toml \
--runs 1000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@cargo run \
--features $@ \
reduce \
fuzz_operations \
--manifest-path examples/basic/Cargo.toml \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@SHOULD_PANIC=1 cargo run \
--features $@ \
test \
tests::add_test \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
&& exit 1 || true
@SHOULD_PANIC=1 cargo run \
--features $@ \
reduce \
tests::add_test \
--manifest-path examples/basic/Cargo.toml \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
|| true # TODO make this consistent
@SHOULD_PANIC=1 cargo run \
--features $@ \
test \
tests::other_test \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
&& exit 1 || true
@SHOULD_PANIC=1 cargo run \
--features $@ \
reduce \
tests::other_test \
--manifest-path examples/basic/Cargo.toml \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
|| true # TODO make this consistent
@SHOULD_PANIC=1 cargo run \
--features $@ \
test \
tests::panicking_generator_test \
--manifest-path examples/basic/Cargo.toml \
--runs 1000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
|| true # TODO make this consistent
afl:
@cargo run \
--features $@ \
test \
fuzz_bytes \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@cargo run \
--features $@ \
test \
fuzz_generator \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER)
@rm -rf examples/basic/src/__fuzz__
@SHOULD_PANIC=1 cargo run \
--features $@ \
test \
tests::add_test \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
&& exit 1 || true
@rm -rf examples/basic/src/__fuzz__
@SHOULD_PANIC=1 cargo run \
--features $@ \
test \
tests::other_test \
--manifest-path examples/basic/Cargo.toml \
--runs 100000 \
--engine $@ \
--release \
--sanitizer $(SANITIZER) \
&& exit 1 || true
book:
@mdbook build book
publish: book
@cd bolero-generator-derive && cargo publish
@sleep 30
@cd bolero-generator && cargo publish
@sleep 30
@cd bolero-engine && cargo publish
@sleep 30
@cd bolero-afl && cargo publish
@sleep 30
@cd bolero-honggfuzz && cargo publish
@sleep 30
@cd bolero-libfuzzer && cargo publish
@sleep 30
@cd bolero && cargo publish
@sleep 30
@cd cargo-bolero && cargo publish
.PHONY: book