summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-27 11:07:26 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-27 12:50:16 -0700
commitaa1163b92de7717eb7c5eba002b4012e0574a7fe (patch)
tree7b18828f0f63693271cb4f38da4b80e1cc418f2e /src/test
parent1fefa5b5149211c7acd11fd2ab78d9ca9873ed92 (diff)
downloadrust-0.11.0.tar.gz
rust-0.11.0.zip
Update to 0.11.0 0.11.0
Diffstat (limited to 'src/test')
-rw-r--r--src/test/auxiliary/issue-11908-1.rs2
-rw-r--r--src/test/auxiliary/issue-11908-2.rs2
-rw-r--r--src/test/run-make/crate-data-smoke/Makefile2
-rw-r--r--src/test/run-make/crate-data-smoke/crate.rs2
-rw-r--r--src/test/run-pass/use.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/test/auxiliary/issue-11908-1.rs b/src/test/auxiliary/issue-11908-1.rs
index 4491adc74bd..8a48e483029 100644
--- a/src/test/auxiliary/issue-11908-1.rs
+++ b/src/test/auxiliary/issue-11908-1.rs
@@ -10,5 +10,5 @@
 
 // no-prefer-dynamic
 
-#![crate_id = "url#0.11.0-pre"]
+#![crate_id = "url#0.11.0"]
 #![crate_type = "dylib"]
diff --git a/src/test/auxiliary/issue-11908-2.rs b/src/test/auxiliary/issue-11908-2.rs
index d921aeda3e0..0deece53451 100644
--- a/src/test/auxiliary/issue-11908-2.rs
+++ b/src/test/auxiliary/issue-11908-2.rs
@@ -10,5 +10,5 @@
 
 // no-prefer-dynamic
 
-#![crate_id = "url#0.11.0-pre"]
+#![crate_id = "url#0.11.0"]
 #![crate_type = "rlib"]
diff --git a/src/test/run-make/crate-data-smoke/Makefile b/src/test/run-make/crate-data-smoke/Makefile
index a72e24cf2c3..a44481b4b7f 100644
--- a/src/test/run-make/crate-data-smoke/Makefile
+++ b/src/test/run-make/crate-data-smoke/Makefile
@@ -1,7 +1,7 @@
 -include ../tools.mk
 
 all:
-	[ `$(RUSTC) --crate-id crate.rs` = "foo#0.11.0-pre" ]
+	[ `$(RUSTC) --crate-id crate.rs` = "foo#0.11.0" ]
 	[ `$(RUSTC) --crate-name crate.rs` = "foo" ]
 	[ `$(RUSTC) --crate-file-name crate.rs` = "foo" ]
 	[ `$(RUSTC) --crate-file-name --crate-type=lib --test crate.rs` = "foo" ]
diff --git a/src/test/run-make/crate-data-smoke/crate.rs b/src/test/run-make/crate-data-smoke/crate.rs
index 31446a763e2..9faa7c01628 100644
--- a/src/test/run-make/crate-data-smoke/crate.rs
+++ b/src/test/run-make/crate-data-smoke/crate.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![crate_id = "foo#0.11.0-pre"]
+#![crate_id = "foo#0.11.0"]
 
 // Querying about the crate metadata should *not* parse the entire crate, it
 // only needs the crate attributes (which are guaranteed to be at the top) be
diff --git a/src/test/run-pass/use.rs b/src/test/run-pass/use.rs
index c42f392d2bc..e5a79bfaa99 100644
--- a/src/test/run-pass/use.rs
+++ b/src/test/run-pass/use.rs
@@ -15,7 +15,7 @@
 #![no_std]
 extern crate std;
 extern crate zed = "std";
-extern crate bar = "std#0.11.0-pre";
+extern crate bar = "std#0.11.0";
 
 
 use std::str;