]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #23098 - brson:ignore-fast, r=alexcrichton
authorManish Goregaokar <manishsmail@gmail.com>
Fri, 6 Mar 2015 03:32:56 +0000 (09:02 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Fri, 6 Mar 2015 16:52:28 +0000 (22:22 +0530)
src/test/compile-fail/privacy5.rs
src/test/run-pass/c-stack-returning-int64.rs
src/test/run-pass/foreign-fn-linkname.rs
src/test/run-pass/foreign-mod-unused-const.rs
src/test/run-pass/foreign2.rs
src/test/run-pass/issue-4735.rs
src/test/run-pass/newtype-struct-with-dtor.rs
src/test/run-pass/variadic-ffi.rs

index df570fd46479296c9c92a71c0a0656df847de92c..a7f6a514b96af53082fcc7d33396c0d7c0b25061 100644 (file)
@@ -9,7 +9,6 @@
 // except according to those terms.
 
 // aux-build:privacy-tuple-struct.rs
-// ignore-fast
 
 extern crate "privacy-tuple-struct" as other;
 
index 6246ee9c6c41a9ad4bdcd7c94cc8c8a1dfa9c82f..1de7520d2b1d04218cf0f5b2c943991ee2a77364 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast doesn't like extern crate
 
 extern crate libc;
 
index 1c36ad73238c8f05f74b82b1e3eaaeb52bb8d8e7..172ece0c4bfd94ccc8bbfe861bf774eb49887187 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast doesn't like extern crate
 
 extern crate libc;
 use std::ffi::CString;
index e1ed0b8ea3b0c0743ba2a5663c553f581f2b6b9e..03023f032335fafa8f7c57336ba5573c16bedb2c 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast doesn't like extern crate
 
 extern crate libc;
 
index ce2f895566439433143810603ae1b87984796622..5ebc4effb3718775e0be521deda499c5568e69c0 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast doesn't like extern crate
 
 extern crate libc;
 
index bf422bd0405a1c9343f82af2cd38fb63abcbc3e1..196e9748b107317df9cc0e140d0ccedf3979c042 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast doesn't like extern crate
 
 #![allow(unknown_features)]
 #![feature(box_syntax)]
index 8631755f37fd9a7895ab5678957c2cda5f509eec..15c4e8b04533939a2804f572562ff240ab08e008 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast doesn't like extern crate
 
 extern crate libc;
 use libc::c_int;
index 5a476ed9ee2f89958d02a0cbb6abd8537eace2d0..b3fff6977a54574ece93ec601327129eba1331de 100644 (file)
@@ -13,7 +13,6 @@
 use std::ffi::{self, CString};
 use libc::{c_char, c_int};
 
-// ignore-fast doesn't like extern crate
 
 extern {
     fn sprintf(s: *mut c_char, format: *const c_char, ...) -> c_int;