We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ee9363 commit 68b6924Copy full SHA for 68b6924
src/test/run-make-fulldeps/tools.mk
@@ -47,6 +47,7 @@ DYLIB = $(TMPDIR)/$(1).dll
47
STATICLIB = $(TMPDIR)/$(1).lib
48
STATICLIB_GLOB = $(1)*.lib
49
BIN = $(1).exe
50
+LLVM_FILECHECK := $(shell cygpath -u "$(LLVM_FILECHECK)")
51
else
52
RUN = $(TARGET_RPATH_ENV) $(RUN_BINFILE)
53
FAIL = $(TARGET_RPATH_ENV) $(RUN_BINFILE) && exit 1 || exit 0
src/tools/compiletest/src/runtest.rs
@@ -2691,6 +2691,10 @@ impl<'test> TestCx<'test> {
2691
cmd.env("CLANG", clang);
2692
}
2693
2694
+ if let Some(ref filecheck) = self.config.llvm_filecheck {
2695
+ cmd.env("LLVM_FILECHECK", filecheck);
2696
+ }
2697
+
2698
// We don't want RUSTFLAGS set from the outside to interfere with
2699
// compiler flags set in the test cases:
2700
cmd.env_remove("RUSTFLAGS");
0 commit comments