about summary refs log tree commit diff
path: root/src/tools/compiletest
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-11-16 09:19:02 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-11-30 10:38:08 -0800
commit2186660b5169cb7784b89a7fc0a25eb7889d1e6b (patch)
tree57da88baf1858763e63eff44c92a4322b2b56195 /src/tools/compiletest
parent8e373b47872872a2ce61c5b02f4dd96d90d046ee (diff)
downloadrust-2186660b5169cb7784b89a7fc0a25eb7889d1e6b.tar.gz
rust-2186660b5169cb7784b89a7fc0a25eb7889d1e6b.zip
Update the bootstrap compiler
Now that we've got a beta build, let's use it!
Diffstat (limited to 'src/tools/compiletest')
-rw-r--r--src/tools/compiletest/Cargo.toml6
-rw-r--r--src/tools/compiletest/src/main.rs2
2 files changed, 0 insertions, 8 deletions
diff --git a/src/tools/compiletest/Cargo.toml b/src/tools/compiletest/Cargo.toml
index e05d57365f8..227b695635d 100644
--- a/src/tools/compiletest/Cargo.toml
+++ b/src/tools/compiletest/Cargo.toml
@@ -4,12 +4,6 @@ name = "compiletest"
 version = "0.0.0"
 build = "build.rs"
 
-# Curiously, this will segfault if compiled with opt-level=3 on 64-bit MSVC when
-# running the compile-fail test suite when a should-fail test panics. But hey if
-# this is removed and it gets past the bots, sounds good to me.
-[profile.release]
-opt-level = 2
-
 [dependencies]
 log = "0.3"
 env_logger = { version = "0.3.5", default-features = false }
diff --git a/src/tools/compiletest/src/main.rs b/src/tools/compiletest/src/main.rs
index 806363679d1..d8681c9d6ed 100644
--- a/src/tools/compiletest/src/main.rs
+++ b/src/tools/compiletest/src/main.rs
@@ -16,8 +16,6 @@
 #![feature(test)]
 #![feature(libc)]
 
-#![cfg_attr(stage0, feature(question_mark))]
-
 #![deny(warnings)]
 
 extern crate libc;