Skip to content

Commit cc8d455

Browse files
Add filename when running rustdoc --test on a markdown file
1 parent 717ac96 commit cc8d455

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/librustdoc/markdown.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,8 @@ pub fn test(input: &str, cfgs: Vec<String>, libs: SearchPaths, externs: Externs,
155155
let mut opts = TestOptions::default();
156156
opts.no_crate_inject = true;
157157
let mut collector = Collector::new(input.to_string(), cfgs, libs, externs,
158-
true, opts, maybe_sysroot, None);
158+
true, opts, maybe_sysroot, None,
159+
Some(input.to_owned()));
159160
find_testable_code(&input_str, &mut collector, DUMMY_SP);
160161
test_args.insert(0, "rustdoctest".to_string());
161162
testing::test_main(&test_args, collector.tests);

src/librustdoc/test.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ pub fn run(input: &str,
104104
false,
105105
opts,
106106
maybe_sysroot,
107-
Some(codemap));
107+
Some(codemap),
108+
None);
108109

109110
{
110111
let dep_graph = DepGraph::new(false);
@@ -391,12 +392,13 @@ pub struct Collector {
391392
maybe_sysroot: Option<PathBuf>,
392393
position: Span,
393394
codemap: Option<Rc<CodeMap>>,
395+
filename: Option<String>,
394396
}
395397

396398
impl Collector {
397399
pub fn new(cratename: String, cfgs: Vec<String>, libs: SearchPaths, externs: Externs,
398400
use_headers: bool, opts: TestOptions, maybe_sysroot: Option<PathBuf>,
399-
codemap: Option<Rc<CodeMap>>) -> Collector {
401+
codemap: Option<Rc<CodeMap>>, filename: Option<String>) -> Collector {
400402
Collector {
401403
tests: Vec::new(),
402404
names: Vec::new(),
@@ -411,6 +413,7 @@ impl Collector {
411413
maybe_sysroot: maybe_sysroot,
412414
position: DUMMY_SP,
413415
codemap: codemap,
416+
filename: filename,
414417
}
415418
}
416419

@@ -483,6 +486,8 @@ impl Collector {
483486
pub fn get_filename(&self) -> String {
484487
if let Some(ref codemap) = self.codemap {
485488
codemap.span_to_filename(self.position)
489+
} else if let Some(ref filename) = self.filename {
490+
filename.clone()
486491
} else {
487492
"<input>".to_owned()
488493
}

0 commit comments

Comments
 (0)