2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
2020-02-29 17:16:26 +00:00
|
|
|
// Testing that a librustc_ast can parse modules with canonicalized base path
|
2018-06-08 04:09:19 +00:00
|
|
|
// ignore-cross-compile
|
2020-05-28 16:32:12 +00:00
|
|
|
// ignore-remote
|
2023-01-06 11:49:07 +00:00
|
|
|
// no-remap-src-base: Reading `file!()` (expectedly) fails when enabled.
|
2018-06-08 04:09:19 +00:00
|
|
|
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
2020-02-29 17:37:32 +00:00
|
|
|
extern crate rustc_ast;
|
2019-10-15 20:48:13 +00:00
|
|
|
extern crate rustc_parse;
|
2020-01-18 18:21:05 +00:00
|
|
|
extern crate rustc_session;
|
2020-01-01 23:01:07 +00:00
|
|
|
extern crate rustc_span;
|
2018-06-08 04:09:19 +00:00
|
|
|
|
2022-12-12 19:37:28 +00: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 20:48:13 +00:00
|
|
|
use rustc_parse::new_parser_from_file;
|
2020-01-18 18:21:05 +00:00
|
|
|
use rustc_session::parse::ParseSess;
|
2020-01-01 23:01:07 +00:00
|
|
|
use rustc_span::source_map::FilePathMapping;
|
2018-06-08 04:09:19 +00:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
#[path = "mod_dir_simple/test.rs"]
|
|
|
|
mod gravy;
|
|
|
|
|
|
|
|
pub fn main() {
|
2021-05-05 19:31:25 +00:00
|
|
|
rustc_span::create_default_session_globals_then(|| parse());
|
2018-06-08 04:09:19 +00:00
|
|
|
|
|
|
|
assert_eq!(gravy::foo(), 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse() {
|
2022-10-17 13:11:26 +00:00
|
|
|
let parse_session = ParseSess::new(
|
|
|
|
vec![rustc_parse::DEFAULT_LOCALE_RESOURCE],
|
|
|
|
FilePathMapping::empty()
|
|
|
|
);
|
2018-06-08 04:09:19 +00:00
|
|
|
|
|
|
|
let path = Path::new(file!());
|
|
|
|
let path = path.canonicalize().unwrap();
|
2020-03-21 22:10:10 +00:00
|
|
|
let mut parser = new_parser_from_file(&parse_session, &path, None);
|
2018-06-08 04:09:19 +00:00
|
|
|
let _ = parser.parse_crate_mod();
|
|
|
|
}
|