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

Enable cargo doc --open tests on macos. #7932

Merged
merged 1 commit into from
Feb 25, 2020
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
8 changes: 4 additions & 4 deletions tests/testsuite/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ fn doc_all_member_dependency_same_name() {
}

#[cargo_test]
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
#[cfg(not(windows))] // `echo` may not be available
fn doc_workspace_open_help_message() {
let p = project()
.file(
Expand All @@ -1044,7 +1044,7 @@ fn doc_workspace_open_help_message() {
}

#[cargo_test]
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
#[cfg(not(windows))] // `echo` may not be available
fn doc_workspace_open_different_library_and_package_names() {
let p = project()
.file(
Expand Down Expand Up @@ -1075,7 +1075,7 @@ fn doc_workspace_open_different_library_and_package_names() {
}

#[cargo_test]
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
#[cfg(not(windows))] // `echo` may not be available
fn doc_workspace_open_binary() {
let p = project()
.file(
Expand Down Expand Up @@ -1107,7 +1107,7 @@ fn doc_workspace_open_binary() {
}

#[cargo_test]
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
#[cfg(not(windows))] // `echo` may not be available
fn doc_workspace_open_binary_and_library() {
let p = project()
.file(
Expand Down