Skip to content

Commit ef7db07

Browse files
committed
testing
1 parent b71b26b commit ef7db07

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
6464
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
6565
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
6666
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
67-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.validate-mir-opts=3"
67+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.validate-mir-opts=4"
6868

6969
# Only produce xz tarballs on CI. gz tarballs will be generated by the release
7070
# process by recompressing the existing xz ones. This decreases the storage

src/tools/compiletest/src/runtest.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1955,6 +1955,8 @@ impl<'test> TestCx<'test> {
19551955
rustc.arg("-Zmir-opt-level=4");
19561956
}
19571957

1958+
debug!("rustc args: {:?}", rustc.get_args().collect::<Vec<_>>());
1959+
19581960
let mir_dump_dir = self.get_mir_dump_dir();
19591961
let _ = fs::remove_dir_all(&mir_dump_dir);
19601962
create_dir_all(mir_dump_dir.as_path()).unwrap();

0 commit comments

Comments
 (0)