From: Aleksey Kladov Date: Thu, 8 Mar 2018 19:35:42 +0000 (+0300) Subject: Disable `cargo help -h` X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~2^2~47^2~31 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=af88c9f203a75246c9b333165b8af7c569defe42;p=cargo.git Disable `cargo help -h` --- diff --git a/tests/testsuite/cargo_command.rs b/tests/testsuite/cargo_command.rs index 59c5c5d24..b211d2699 100644 --- a/tests/testsuite/cargo_command.rs +++ b/tests/testsuite/cargo_command.rs @@ -196,7 +196,6 @@ fn cargo_subcommand_env() { } #[test] -#[ignore] fn cargo_help() { assert_that(cargo_process(), execs().with_status(0)); @@ -208,8 +207,6 @@ fn cargo_help() { execs().with_status(0)); assert_that(cargo_process().arg("build").arg("-h"), execs().with_status(0)); - assert_that(cargo_process().arg("help").arg("-h"), - execs().with_status(0)); assert_that(cargo_process().arg("help").arg("help"), execs().with_status(0)); }