2019-07-26 16:54:25 -05:00
|
|
|
// run-pass
|
2020-02-29 11:16:26 -06:00
|
|
|
// Testing that a librustc_ast can parse modules with canonicalized base path
|
2018-06-07 23:09:19 -05:00
|
|
|
// ignore-cross-compile
|
2020-05-28 11:32:12 -05:00
|
|
|
// ignore-remote
|
2023-01-06 05:49:07 -06:00
|
|
|
// no-remap-src-base: Reading `file!()` (expectedly) fails when enabled.
|
2018-06-07 23:09:19 -05:00
|
|
|
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
2020-02-29 11:37:32 -06:00
|
|
|
extern crate rustc_ast;
|
2019-10-15 15:48:13 -05:00
|
|
|
extern crate rustc_parse;
|
2020-01-18 12:21:05 -06:00
|
|
|
extern crate rustc_session;
|
2020-01-01 17:01:07 -06:00
|
|
|
extern crate rustc_span;
|
2018-06-07 23:09:19 -05:00
|
|
|
|
2022-12-12 13:37:28 -06:00
|
|
|
// Necessary to pull in object code as the rest of the rustc crates are shipped only as rmeta
|
|
|
|
// files.
|
|
|
|
#[allow(unused_extern_crates)]
|
|
|
|
extern crate rustc_driver;
|
|
|
|
|
2019-10-15 15:48:13 -05:00
|
|
|
use rustc_parse::new_parser_from_file;
|
2020-01-18 12:21:05 -06:00
|
|
|
use rustc_session::parse::ParseSess;
|
2020-01-01 17:01:07 -06:00
|
|
|
use rustc_span::source_map::FilePathMapping;
|
2018-06-07 23:09:19 -05:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
#[path = "mod_dir_simple/test.rs"]
|
|
|
|
mod gravy;
|
|
|
|
|
|
|
|
pub fn main() {
|
2021-05-05 14:31:25 -05:00
|
|
|
rustc_span::create_default_session_globals_then(|| parse());
|
2018-06-07 23:09:19 -05:00
|
|
|
|
|
|
|
assert_eq!(gravy::foo(), 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse() {
|
2022-10-17 08:11:26 -05:00
|
|
|
let parse_session = ParseSess::new(
|
|
|
|
vec![rustc_parse::DEFAULT_LOCALE_RESOURCE],
|
|
|
|
FilePathMapping::empty()
|
|
|
|
);
|
2018-06-07 23:09:19 -05:00
|
|
|
|
|
|
|
let path = Path::new(file!());
|
|
|
|
let path = path.canonicalize().unwrap();
|
2020-03-21 17:10:10 -05:00
|
|
|
let mut parser = new_parser_from_file(&parse_session, &path, None);
|
2018-06-07 23:09:19 -05:00
|
|
|
let _ = parser.parse_crate_mod();
|
|
|
|
}
|