Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ce8f748

Browse files
author
Jorge Aparicio
committedJan 3, 2015
add feature gate to some benchmarks
1 parent 9aadbad commit ce8f748

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed
 

‎src/test/bench/shootout-fasta.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
3939
// OF THE POSSIBILITY OF SUCH DAMAGE.
4040

41-
#![feature(slicing_syntax)]
41+
#![feature(associated_types, slicing_syntax)]
4242

4343
use std::cmp::min;
4444
use std::io::{BufferedWriter, File};

‎src/test/bench/shootout-k-nucleotide.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
// ignore-android see #10393 #13206
4242

43-
#![feature(slicing_syntax)]
43+
#![feature(associated_types, slicing_syntax)]
4444

4545
use std::ascii::OwnedAsciiExt;
4646
use std::slice;

‎src/test/bench/shootout-meteor.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040

4141
// no-pretty-expanded FIXME #15189
4242

43+
#![feature(associated_types)]
44+
4345
use std::sync::mpsc::channel;
4446
use std::sync::Arc;
4547
use std::thread::Thread;

‎src/test/bench/shootout-reverse-complement.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
// ignore-android see #10393 #13206
4242

43-
#![feature(slicing_syntax, unboxed_closures)]
43+
#![feature(associated_types, slicing_syntax, unboxed_closures)]
4444

4545
extern crate libc;
4646

12 commit comments

Comments
 (12)

bors commented on Jan 3, 2015

@bors
Collaborator

saw approval from aturon
at japaric@ce8f748

bors commented on Jan 3, 2015

@bors
Collaborator

merging japaric/rust/assoc-types = ce8f748 into auto

bors commented on Jan 3, 2015

@bors
Collaborator

status: {"merge_sha": "85689417237e047bdbf2afc7d24955132f220a76"}

bors commented on Jan 3, 2015

@bors
Collaborator

japaric/rust/assoc-types = ce8f748 merged ok, testing candidate = 85689417

bors commented on Jan 4, 2015

@bors
Collaborator

saw approval from aturon
at japaric@ce8f748

bors commented on Jan 4, 2015

@bors
Collaborator

merging japaric/rust/assoc-types = ce8f748 into auto

bors commented on Jan 4, 2015

@bors
Collaborator

status: {"merge_sha": "c6c786671d692d7b13c2e5c68a53001327b4b125"}

bors commented on Jan 4, 2015

@bors
Collaborator

japaric/rust/assoc-types = ce8f748 merged ok, testing candidate = c6c7866

bors commented on Jan 4, 2015

@bors
Collaborator

fast-forwarding master to auto = c6c7866

bors commented on Jan 4, 2015

@bors
Collaborator

fast-forwarding master to auto = c6c7866

Please sign in to comment.