Skip to content

Commit

Permalink
Disable scrape_examples_complex_reverse_dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Aug 2, 2022
1 parent 3ccf7dc commit e8d9291
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit e8d9291

Please sign in to comment.