diff options
author | KC <clarke_overkill@yahoo.com> | 2017-09-27 17:10:55 +1000 |
---|---|---|
committer | KC <clarke_overkill@yahoo.com> | 2017-09-27 17:10:55 +1000 |
commit | 225c9a47f2b054538ad11d019dcb43a952bec606 (patch) | |
tree | f12f88f14733c284ae1715e3f9e41a2c849cffe2 | |
parent | e78394959f40193a4bf9e5718dd4f779cb57437a (diff) |
Issue #1037: pass all derive-enabling flags in bindgen for csmith driver
-rw-r--r-- | csmith-fuzzing/driver.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/csmith-fuzzing/driver.py b/csmith-fuzzing/driver.py index e2816813..f4f00f87 100644 --- a/csmith-fuzzing/driver.py +++ b/csmith-fuzzing/driver.py @@ -31,6 +31,10 @@ def run_bindgen(input, output): "bindgen", "--with-derive-partialeq", "--with-derive-eq", + "--with-derive-partialord", + "--with-derive-ord", + "--with-derive-hash", + "--with-derive-default", "-o", output.name, input.name, "--", |