Add regression test for #122722

This commit is contained in:
Guillaume Gomez 2024-03-23 15:48:44 +01:00
parent 5fab0162cc
commit bc4f1697fa
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,3 @@
//! ```
//! let x = 12;
//! ```

View File

@ -0,0 +1,18 @@
extern crate run_make_support;
use run_make_support::{out_dir, rustdoc};
use std::{fs, iter};
use std::path::Path;
fn generate_a_lot_of_cfgs(path: &Path) {
let content = iter::repeat("--cfg=a\n").take(100_000).collect::<String>();
fs::write(path, content.as_bytes()).expect("failed to create args file");
}
fn main() {
let arg_file = out_dir().join("args");
generate_a_lot_of_cfgs(&arg_file);
let arg_file = format!("@{}", arg_file.display());
rustdoc().arg("--test").arg(&arg_file).arg("foo.rs").run();
}