Skip to content

Commit

Permalink
Add regression test for rust-lang#122722
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Mar 23, 2024
1 parent 5fab016 commit bc4f169
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/run-make/rustdoc-test-args/foo.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
//! ```
//! let x = 12;
//! ```
18 changes: 18 additions & 0 deletions tests/run-make/rustdoc-test-args/rmake.rs
Original file line number Diff line number Diff line change
@@ -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();
}

0 comments on commit bc4f169

Please sign in to comment.