From: Aleksey Kladov Date: Fri, 4 May 2018 14:53:10 +0000 (+0300) Subject: Revert "Attmept to fix a spurious failure on AppVeyor" X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~1^2~16^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d57f6b05637d7f756f2d3c6623a4f9b01b55169a;p=cargo.git Revert "Attmept to fix a spurious failure on AppVeyor" This reverts commit db3328f8f7b96701faa62756a0d55ed71899d894. We get spurious errors for thouse tests even with debug info disabled, so let's reenable it back. --- diff --git a/tests/testsuite/build_script.rs b/tests/testsuite/build_script.rs index b3cf382e2..ec68f6cd6 100644 --- a/tests/testsuite/build_script.rs +++ b/tests/testsuite/build_script.rs @@ -3742,9 +3742,6 @@ fn rename_with_link_search_path() { name = "bar" version = "0.5.0" authors = [] - - [profile.dev] - debug = false "#, ) .file( diff --git a/tests/testsuite/freshness.rs b/tests/testsuite/freshness.rs index cd12af83a..09f324d8e 100644 --- a/tests/testsuite/freshness.rs +++ b/tests/testsuite/freshness.rs @@ -502,9 +502,6 @@ fn changing_bin_features_caches_targets() { [features] foo = [] - - [profile.dev] - debug = false "#, ) .file( @@ -526,7 +523,7 @@ fn changing_bin_features_caches_targets() { .with_stderr( "\ [..]Compiling foo v0.0.1 ([..]) -[FINISHED] dev [unoptimized] target(s) in [..] +[FINISHED] dev [unoptimized + debuginfo] target(s) in [..] [RUNNING] `target[/]debug[/]foo[EXE]` ", ), @@ -540,7 +537,7 @@ fn changing_bin_features_caches_targets() { .with_stderr( "\ [..]Compiling foo v0.0.1 ([..]) -[FINISHED] dev [unoptimized] target(s) in [..] +[FINISHED] dev [unoptimized + debuginfo] target(s) in [..] [RUNNING] `target[/]debug[/]foo[EXE]` ", ), @@ -555,7 +552,7 @@ fn changing_bin_features_caches_targets() { .with_stdout("feature off") .with_stderr( "\ -[FINISHED] dev [unoptimized] target(s) in [..] +[FINISHED] dev [unoptimized + debuginfo] target(s) in [..] [RUNNING] `target[/]debug[/]foo[EXE]` ", ), @@ -568,7 +565,7 @@ fn changing_bin_features_caches_targets() { .with_stdout("feature on") .with_stderr( "\ -[FINISHED] dev [unoptimized] target(s) in [..] +[FINISHED] dev [unoptimized + debuginfo] target(s) in [..] [RUNNING] `target[/]debug[/]foo[EXE]` ", ),