Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable scrape_examples_complex_reverse_dependencies #10921

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/testsuite/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2420,7 +2420,12 @@ fn scrape_examples_avoid_build_script_cycle() {
.run();
}

#[cargo_test(nightly, reason = "rustdoc scrape examples flags are unstable")]
// FIXME: This test is broken with latest nightly 2022-08-02.
// The example is calling a function from a proc-macro, but proc-macros don't
// export functions. It is not clear what this test is trying to exercise.
// #[cargo_test(nightly, reason = "rustdoc scrape examples flags are unstable")]
#[ignore]
#[cargo_test]
fn scrape_examples_complex_reverse_dependencies() {
let p = project()
.file(
Expand Down