blob: cadf07237e954ae6a0f0e52a0562fe938fb7374c [file] [log] [blame]
#![feature(test)]
extern crate test;
#[test]
fn short_test_name() {}
#[test]
fn this_is_a_really_long_test_name() {}
#[bench]
fn short_bench_name(b: &mut test::Bencher) {
b.iter(|| 1);
}
#[bench]
fn this_is_a_really_long_bench_name(b: &mut test::Bencher) {
b.iter(|| 1);
}