Skip to content

Commit 225c9a4

Browse files
committed
Issue rust-lang#1037: pass all derive-enabling flags in bindgen for csmith driver
1 parent e783949 commit 225c9a4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

csmith-fuzzing/driver.py

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ def run_bindgen(input, output):
3131
"bindgen",
3232
"--with-derive-partialeq",
3333
"--with-derive-eq",
34+
"--with-derive-partialord",
35+
"--with-derive-ord",
36+
"--with-derive-hash",
37+
"--with-derive-default",
3438
"-o", output.name,
3539
input.name,
3640
"--",

0 commit comments

Comments
 (0)