2019-07-27 00:54:25 +03:00
|
|
|
// run-pass
|
2018-06-08 07:09:19 +03:00
|
|
|
// Testing that a libsyntax can parse modules with canonicalized base path
|
|
|
|
// ignore-cross-compile
|
|
|
|
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
extern crate syntax;
|
2019-10-15 22:48:13 +02:00
|
|
|
extern crate rustc_parse;
|
2020-01-18 19:21:05 +01:00
|
|
|
extern crate rustc_session;
|
2020-01-02 00:01:07 +01:00
|
|
|
extern crate rustc_span;
|
2018-06-08 07:09:19 +03:00
|
|
|
|
2019-10-15 22:48:13 +02:00
|
|
|
use rustc_parse::new_parser_from_file;
|
2020-01-18 19:21:05 +01:00
|
|
|
use rustc_session::parse::ParseSess;
|
2020-01-02 00:01:07 +01:00
|
|
|
use rustc_span::source_map::FilePathMapping;
|
2018-06-08 07:09:19 +03:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
#[path = "mod_dir_simple/test.rs"]
|
|
|
|
mod gravy;
|
|
|
|
|
|
|
|
pub fn main() {
|
2019-04-06 00:15:49 +02:00
|
|
|
syntax::with_default_globals(|| parse());
|
2018-06-08 07:09:19 +03:00
|
|
|
|
|
|
|
assert_eq!(gravy::foo(), 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse() {
|
2019-11-19 21:38:31 -05:00
|
|
|
let parse_session = ParseSess::new(FilePathMapping::empty());
|
2018-06-08 07:09:19 +03:00
|
|
|
|
|
|
|
let path = Path::new(file!());
|
|
|
|
let path = path.canonicalize().unwrap();
|
2019-10-10 10:26:10 +02:00
|
|
|
let mut parser = new_parser_from_file(&parse_session, &path);
|
2018-06-08 07:09:19 +03:00
|
|
|
let _ = parser.parse_crate_mod();
|
|
|
|
}
|