I tried running --dfs-exhaustive in the following ways, and got the following errors:
$ csmith --dfs-exhaustive
error: options conflict - max-exhaustive-depth must be at least 0
$ csmith --dfs-exhaustive --max-exhaustive-depth
expect arg at pos 3
$ csmith --dfs-exhaustive --max-exhaustive-depth 0
error: options conflict - max-exhaustive-depth must be at least 0
$ csmith --dfs-exhaustive --max-exhaustive-depth 1
Assertion failed: ("request random number in an error state. " && 0), function random_choice, file .../csmith/src/DFSRndNumGenerator.cpp, line 286.
[1] 25559 abort csmith --dfs-exhaustive --max-exhaustive-depth 1
$ csmith --dfs-exhaustive --max-exhaustive-depth 2
<exit status 0, no output>
$ csmith --dfs-exhaustive --max-exhaustive-depth 3
[1] 25629 segmentation fault csmith --dfs-exhaustive --max-exhaustive-depth 3
$ csmith --dfs-exhaustive --max-exhaustive-depth 4
[1] 25664 segmentation fault csmith --dfs-exhaustive --max-exhaustive-depth 4
$ csmith --dfs-exhaustive --max-exhaustive-depth 20
[1] 25699 segmentation fault csmith --dfs-exhaustive --max-exhaustive-depth 20
Is there some other way to run --dfs-exhaustive that I haven't tried?
Thanks!
I tried running
--dfs-exhaustivein the following ways, and got the following errors:Is there some other way to run
--dfs-exhaustivethat I haven't tried?Thanks!