blob: 97a99b47b5c7c21ffc64ba7ee4d5bc918363853d [file] [log] [blame] [edit]
#![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) {}
#[bench]
fn this_is_a_really_long_bench_name(b: &mut test::Bencher) {}