about summary refs log tree commit diff
path: root/tests/run-make/libtest-padding/tests.rs
blob: 97a99b47b5c7c21ffc64ba7ee4d5bc918363853d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![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) {}