rust/src/test/ui-fulldeps/mod_dir_path_canonicalized.rs

34 lines
797 B
Rust
Raw Normal View History

// run-pass
// Testing that a libsyntax can parse modules with canonicalized base path
// ignore-cross-compile
#![feature(rustc_private)]
extern crate syntax;
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;
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;
use std::path::Path;
#[path = "mod_dir_simple/test.rs"]
mod gravy;
pub fn main() {
syntax::with_default_globals(|| parse());
assert_eq!(gravy::foo(), 10);
}
fn parse() {
let parse_session = ParseSess::new(FilePathMapping::empty());
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);
let _ = parser.parse_crate_mod();
}