1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#![cfg_attr(test, feature(test))]

#[cfg(test)]
extern crate test;

#[cfg(test)]
mod tests {
    use std::io;
    use std::io::Read;
    use std::fs::File;
    use test::Bencher;
    use syntax::parse;

    fn read_file(path: &str) -> Result<String, io::Error> {
        let mut f = try!(File::open(path));
        let mut s = String::new();
        try!(f.read_to_string(&mut s));
        Ok(s)
    }


    #[bench]
    fn bench_parser_simple(b: &mut Bencher) {
        let f = read_file("./tests/simple.ftl").expect("Couldn't load file");

        b.iter(|| {
            parse(&f).unwrap();
        });
    }

    #[bench]
    fn bench_parser_workout_low(b: &mut Bencher) {
        let f = read_file("./tests/workload-low.ftl").expect("Couldn't load file");

        b.iter(|| {
            parse(&f).unwrap();
        });
    }
}


pub mod syntax;
pub mod context;