]> git.lizzy.rs Git - rust.git/commitdiff
also run compile-fail tests with and without optimizations
authorRalf Jung <post@ralfj.de>
Tue, 23 Oct 2018 11:09:17 +0000 (13:09 +0200)
committerRalf Jung <post@ralfj.de>
Tue, 23 Oct 2018 11:09:17 +0000 (13:09 +0200)
src/stacked_borrows.rs
tests/compile-fail/stacked_borrows/alias_through_mutation.rs
tests/compile-fail/stacked_borrows/buggy_as_mut_slice.rs
tests/compile-fail/stacked_borrows/buggy_split_at_mut.rs
tests/compile-fail/stacked_borrows/illegal_write2.rs
tests/compiletest.rs
tests/run-pass-fullmir/integer-ops.rs

index 127958476bcb36608d8508eb8fdb350b252716df..316316351863ac4754f00e44d0d8aa48c0e47bef 100644 (file)
@@ -446,6 +446,8 @@ fn tag_dereference(
                 // A mut got transmuted to shr.  High time we freeze this location!
                 // Make this a delayed reborrow.  Redundant reborows to shr are okay,
                 // so we do not have to be worried about doing too much.
+                // FIXME: Reconsider if we really want to mutate things while doing just a deref,
+                // which, in particular, validation does.
                 trace!("tag_dereference: Lazy freezing of {:?}", ptr);
                 return self.tag_reference(ptr, pointee_ty, size, ref_kind);
             }
index 3fcf20e156256177f057f50d3934b1e9a36b3cee..83132195fe465e349266602dd25db39a43a2d177 100644 (file)
@@ -1,3 +1,6 @@
+// With optimizations, we just store a raw in `x`, and there is no problem.
+// compile-flags: -Zmir-opt-level=0
+
 #![allow(unused_variables)]
 
 // This makes a ref that was passed to us via &mut alias with things it should not alias with
index 5f729af30bbe618708f7c4cc5c9147a1dcb3ac6d..9e94aa8885d2c6d92c921cd8785172ff811cc7a0 100644 (file)
@@ -1,3 +1,6 @@
+// FIXME: Without retagging, optimization kills finding this problem
+// compile-flags: -Zmir-opt-level=0
+
 #![allow(unused_variables)]
 
 mod safe {
index 0a890b1cebaa1381d250ab914393845e6d2dfe8e..9fbcec4a8ef80eb7b19cf3b20236fbcc0583aa98 100644 (file)
@@ -1,3 +1,6 @@
+// FIXME: Without retagging, optimization kills finding this problem
+// compile-flags: -Zmir-opt-level=0
+
 #![allow(unused_variables)]
 
 mod safe {
index f4fefaad5e22ddf82cdfe74b2fc5edbe0ac05a0e..ac9c3397f5348618480950bb089f848745091194 100644 (file)
@@ -1,3 +1,6 @@
+// The reborow gets optimized away, so we can only detect this issue without optimizations
+// compile-flags: -Zmir-opt-level=0
+
 #![allow(unused_variables)]
 
 fn main() {
index 7a7d7e49b2db5a2fc95c8f8b13355719f89be459..8070f817bcf6a72159a453b7a107b055d6b24ed4 100644 (file)
@@ -37,7 +37,7 @@ fn have_fullmir() -> bool {
     std::env::var("MIRI_SYSROOT").is_ok() || rustc_test_suite().is_some()
 }
 
-fn compile_fail(sysroot: &Path, path: &str, target: &str, host: &str, need_fullmir: bool) {
+fn compile_fail(sysroot: &Path, path: &str, target: &str, host: &str, need_fullmir: bool, opt: bool) {
     if need_fullmir && !have_fullmir() {
         eprintln!("{}", format!(
             "## Skipping compile-fail tests in {} against miri for target {} due to missing mir",
@@ -47,24 +47,34 @@ fn compile_fail(sysroot: &Path, path: &str, target: &str, host: &str, need_fullm
         return;
     }
 
+    let opt_str = if opt { " with optimizations" } else { "" };
     eprintln!("{}", format!(
-        "## Running compile-fail tests in {} against miri for target {}",
+        "## Running compile-fail tests in {} against miri for target {}{}",
         path,
-        target
+        target,
+        opt_str
     ).green().bold());
+
+    let mut flags = Vec::new();
+    flags.push(format!("--sysroot {}", sysroot.display()));
+    flags.push("-Dwarnings -Dunused".to_owned()); // overwrite the -Aunused in compiletest-rs
+    flags.push("-Zmir-emit-validate=1".to_owned());
+    if opt {
+        // Optimizing too aggressivley makes UB detection harder, but test at least
+        // the default value.
+        flags.push("-Zmir-opt-level=1".to_owned());
+    } else {
+        flags.push("-Zmir-opt-level=0".to_owned());
+    }
+
     let mut config = compiletest::Config::default().tempdir();
     config.mode = "compile-fail".parse().expect("Invalid mode");
     config.rustc_path = miri_path();
-    let mut flags = Vec::new();
     if rustc_test_suite().is_some() {
         config.run_lib_path = rustc_lib_path();
         config.compile_lib_path = rustc_lib_path();
     }
-    flags.push(format!("--sysroot {}", sysroot.display()));
-    flags.push("-Dwarnings -Dunused".to_owned()); // overwrite the -Aunused in compiletest-rs
     config.src_base = PathBuf::from(path.to_string());
-    flags.push("-Zmir-opt-level=0".to_owned()); // optimization circumvents some stacked borrow checks
-    flags.push("-Zmir-emit-validate=1".to_owned());
     config.target_rustcflags = Some(flags.join(" "));
     config.target = target.to_owned();
     config.host = host.to_owned();
@@ -88,19 +98,11 @@ fn miri_pass(sysroot: &Path, path: &str, target: &str, host: &str, need_fullmir:
         target,
         opt_str
     ).green().bold());
-    let mut config = compiletest::Config::default().tempdir();
-    config.mode = "ui".parse().expect("Invalid mode");
-    config.src_base = PathBuf::from(path);
-    config.target = target.to_owned();
-    config.host = host.to_owned();
-    config.rustc_path = miri_path();
-    if rustc_test_suite().is_some() {
-        config.run_lib_path = rustc_lib_path();
-        config.compile_lib_path = rustc_lib_path();
-    }
+
     let mut flags = Vec::new();
     flags.push(format!("--sysroot {}", sysroot.display()));
     flags.push("-Dwarnings -Dunused".to_owned()); // overwrite the -Aunused in compiletest-rs
+    flags.push("-Zmir-emit-validate=1".to_owned());
     if opt {
         // FIXME: Using level 1 (instead of 3) for now, as the optimizer is pretty broken
         // and crashes...
@@ -109,8 +111,17 @@ fn miri_pass(sysroot: &Path, path: &str, target: &str, host: &str, need_fullmir:
         flags.push("-Zmir-opt-level=1".to_owned());
     } else {
         flags.push("-Zmir-opt-level=0".to_owned());
-        // For now, only validate without optimizations.  Inlining breaks validation.
-        flags.push("-Zmir-emit-validate=1".to_owned());
+    }
+
+    let mut config = compiletest::Config::default().tempdir();
+    config.mode = "ui".parse().expect("Invalid mode");
+    config.src_base = PathBuf::from(path);
+    config.target = target.to_owned();
+    config.host = host.to_owned();
+    config.rustc_path = miri_path();
+    if rustc_test_suite().is_some() {
+        config.run_lib_path = rustc_lib_path();
+        config.compile_lib_path = rustc_lib_path();
     }
     config.target_rustcflags = Some(flags.join(" "));
     compiletest::run_tests(&config);
@@ -173,13 +184,13 @@ fn run_pass_miri(opt: bool) {
     miri_pass(&sysroot, "tests/run-pass-fullmir", &host, &host, true, opt);
 }
 
-fn compile_fail_miri() {
+fn compile_fail_miri(opt: bool) {
     let sysroot = get_sysroot();
     let host = get_host();
 
     // FIXME: run tests for other targets, too
-    compile_fail(&sysroot, "tests/compile-fail", &host, &host, false);
-    compile_fail(&sysroot, "tests/compile-fail-fullmir", &host, &host, true);
+    compile_fail(&sysroot, "tests/compile-fail", &host, &host, false, opt);
+    compile_fail(&sysroot, "tests/compile-fail-fullmir", &host, &host, true, opt);
 }
 
 #[test]
@@ -191,5 +202,6 @@ fn test() {
     run_pass_miri(false);
     run_pass_miri(true);
 
-    compile_fail_miri();
+    compile_fail_miri(false);
+    compile_fail_miri(true);
 }
index 7a2335c829efe8275afcf713e5449d8f1a8fa60a..0264099eb68dc338a95acba2c16bb75cabf3aff8 100644 (file)
@@ -8,9 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// FIXME: remove -Zmir-opt-level once https://github.com/rust-lang/rust/issues/43359 is fixed
-// compile-flags: -Zmir-opt-level=0
-
 use std::i32;
 
 pub fn main() {