We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f25181 commit 35024ddCopy full SHA for 35024dd
src/main.rs
@@ -2675,13 +2675,16 @@ fn analyze() {
2675
"--passes=10",
2676
"--min-reduction=10",
2677
"--interesting-exit-code=101",
2678
- "--output '-'",
+ "--output",
2679
+ "-",
2680
]);
2681
trd.arg("--source");
2682
trd.arg(file);
2683
2684
trd.args(["--", &bin]);
- trd.args(flags);
2685
+ if !flags.is_empty() {
2686
+ trd.args(flags);
2687
+ }
2688
trd.arg("@@.rs");
2689
2690
let output = trd.output().unwrap();
@@ -2692,7 +2695,7 @@ fn analyze() {
2692
2695
mvce: reduced_file,
2693
2696
};
2694
2697
- dbg!(analysis);
2698
+ eprintln!("{}", analysis.mvce);
2699
}
2700
})
2701
0 commit comments