diff --git a/examples/rustc-interface-example.rs b/examples/rustc-interface-example.rs index b44395046..4601d9adb 100644 --- a/examples/rustc-interface-example.rs +++ b/examples/rustc-interface-example.rs @@ -50,7 +50,7 @@ fn main() { make_codegen_backend: None, expanded_args: Vec::new(), ice_file: None, - hash_untracked_state: None, + track_state: None, using_internal_features: &rustc_driver::USING_INTERNAL_FEATURES, }; rustc_interface::run_compiler(config, |compiler| { @@ -72,4 +72,4 @@ fn main() { } }); }); -} \ No newline at end of file +} diff --git a/examples/rustc-interface-getting-diagnostics.rs b/examples/rustc-interface-getting-diagnostics.rs index 342316ba6..ea2a77270 100644 --- a/examples/rustc-interface-getting-diagnostics.rs +++ b/examples/rustc-interface-getting-diagnostics.rs @@ -78,7 +78,7 @@ fn main() { make_codegen_backend: None, expanded_args: Vec::new(), ice_file: None, - hash_untracked_state: None, + track_state: None, using_internal_features: &rustc_driver::USING_INTERNAL_FEATURES, }; rustc_interface::run_compiler(config, |compiler| { @@ -97,4 +97,4 @@ fn main() { buffer.lock().unwrap().iter().for_each(|diagnostic| { println!("{diagnostic:#?}"); }); -} \ No newline at end of file +} diff --git a/rust-version b/rust-version index 1175e3372..702f1a796 100644 --- a/rust-version +++ b/rust-version @@ -1 +1 @@ -cf1817bc6ecd2d14ca492247c804bad31948dd56 +d493b7c5ac637ed7edf626128b9f14796a2dad20 diff --git a/src/tests/directives.md b/src/tests/directives.md index 76bf2cdbe..d536d324c 100644 --- a/src/tests/directives.md +++ b/src/tests/directives.md @@ -326,6 +326,8 @@ See [Pretty-printer](compiletest.md#pretty-printer-tests). The following directives affect how certain command-line tools are invoked, in test suites that use those tools: +- `skip-filecheck` avoids running LLVM's `FileCheck` tool in tests that would normally run it to check output. + - Used by codegen tests, assembly tests, and mir-opt tests. - `filecheck-flags` adds extra flags when running LLVM's `FileCheck` tool. - Used by [codegen tests](compiletest.md#codegen-tests), [assembly tests](compiletest.md#assembly-tests), and