]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/syntax-extension-source-utils.rs
rollup merge of #19979: Munksgaard/19978
[rust.git] / src / test / run-pass / syntax-extension-source-utils.rs
1 // Copyright 2012-2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // This test is brittle!
12 // ignore-pretty - the pretty tests lose path information, breaking include!
13
14 #![feature(macro_rules)]
15
16 pub mod m1 {
17     pub mod m2 {
18         pub fn where_am_i() -> String {
19             (module_path!()).to_string()
20         }
21     }
22 }
23
24 macro_rules! indirect_line( () => ( line!() ) );
25
26 pub fn main() {
27     assert_eq!(line!(), 27);
28     //assert!((column!() == 11));
29     assert_eq!(indirect_line!(), 29);
30     assert!((file!().ends_with("syntax-extension-source-utils.rs")));
31     assert_eq!(stringify!((2*3) + 5).to_string(), "( 2 * 3 ) + 5".to_string());
32     assert!(include!("syntax-extension-source-utils-files/includeme.\
33                       fragment").to_string()
34            == "victory robot 6".to_string());
35
36     assert!(
37         include_str!("syntax-extension-source-utils-files/includeme.\
38                       fragment").to_string()
39         .as_slice()
40         .starts_with("/* this is for "));
41     assert!(
42         include_bin!("syntax-extension-source-utils-files/includeme.fragment")
43         [1] == (42 as u8)); // '*'
44     // The Windows tests are wrapped in an extra module for some reason
45     assert!((m1::m2::where_am_i().as_slice().ends_with("m1::m2")));
46
47     assert!(match (47, "( 2 * 3 ) + 5") {
48         (line!(), stringify!((2*3) + 5)) => true,
49         _ => false
50     })
51 }