Skip to content

Commit c160b20

Browse files
authored
Merge pull request rust-lang#1043 from clippered/issue-1037/csmith_driver_derive
Issue rust-lang#1037: pass all derive-enabling flags in bindgen for csmith driver
2 parents e783949 + 225c9a4 commit c160b20

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)