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 88ab104 commit f1d5cd5Copy full SHA for f1d5cd5
.github/driver.sh
@@ -31,4 +31,9 @@ diff normalized.stderr tests/ui/cstring.stderr
31
SYSROOT=`rustc --print sysroot`
32
diff <(LD_LIBRARY_PATH=${SYSROOT}/lib ./target/debug/clippy-driver --rustc --version --verbose) <(rustc --version --verbose)
33
34
+# 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
+diff <($CLIPPY) <($RUSTC)
38
+
39
# TODO: CLIPPY_CONF_DIR / CARGO_MANIFEST_DIR
0 commit comments