File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ diff normalized.stderr tests/ui/cstring.stderr
3131SYSROOT=` rustc --print sysroot`
3232diff <( LD_LIBRARY_PATH=${SYSROOT} /lib ./target/debug/clippy-driver --rustc --version --verbose) <( rustc --version --verbose)
3333
34+
35+ echo " fn main() {}" > target/driver_test.rs
3436# we can't run 2 rustcs on the same file at the same time
35- CLIPPY=` LD_LIBRARY_PATH=${SYSROOT} /lib ./target/debug/clippy-driver tests/driver/main .rs`
36- RUSTC=` rustc tests/driver/main .rs`
37+ CLIPPY=` LD_LIBRARY_PATH=${SYSROOT} /lib ./target/debug/clippy-driver ./target/driver_test .rs --rustc `
38+ RUSTC=` rustc ./target/driver_test .rs`
3739diff <( $CLIPPY ) <( $RUSTC )
3840
3941# TODO: CLIPPY_CONF_DIR / CARGO_MANIFEST_DIR
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ Usage:
207207
208208Common options:
209209 -h, --help Print this message
210+ --rustc Pass all args to rustc
210211 -V, --version Print version info and exit
211212
212213Other options are the same as `cargo check`.
You can’t perform that action at this time.
0 commit comments