summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2021-02-28 13:24:46 -0500
committerJoshua Nelson <jyn514@gmail.com>2021-06-06 00:44:54 -0400
commit1cdc81bdc109dab9a71108201a0e8edf24efeafa (patch)
tree553d7ca320c09c6b0962769437e123d0f911292b /src/bootstrap
parent34b9932f5c0f519d6b9b9f95f21723142c5dc877 (diff)
downloadrust-1cdc81bdc109dab9a71108201a0e8edf24efeafa.tar.gz
rust-1cdc81bdc109dab9a71108201a0e8edf24efeafa.zip
Don't pass -Z unstable-options by default for UI tests
- Pass it explicitly where appropriate
- Update stderr files and warnings; it turns that unstable-options has
  far-reaching effects on diagnostics.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index cc7c143d474..1fa37737b55 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -1280,7 +1280,6 @@ note: if you're sure you want to do this, please open an issue as to why. In the
             }
         }
         flags.push(format!("-Cdebuginfo={}", builder.config.rust_debuginfo_level_tests));
-        flags.push("-Zunstable-options".to_string());
         flags.push(builder.config.cmd.rustc_args().join(" "));
 
         if let Some(linker) = builder.linker(target) {