15 lines
515 B
Rust
15 lines
515 B
Rust
use run_make_support::{rustc, rustdoc, Diff};
|
|
|
|
fn compare_outputs(args: &[&str]) {
|
|
let rustc_output = String::from_utf8(rustc().args(args).command_output().stdout).unwrap();
|
|
let rustdoc_output = String::from_utf8(rustdoc().args(args).command_output().stdout).unwrap();
|
|
|
|
Diff::new().expected_text("rustc", rustc_output).actual_text("rustdoc", rustdoc_output).run();
|
|
}
|
|
|
|
fn main() {
|
|
compare_outputs(&["-C", "help"]);
|
|
compare_outputs(&["-Z", "help"]);
|
|
compare_outputs(&["-C", "passes=list"]);
|
|
}
|