Revert "Attmept to fix a spurious failure on AppVeyor"
authorAleksey Kladov <aleksey.kladov@gmail.com>
Fri, 4 May 2018 14:53:10 +0000 (17:53 +0300)
committerAleksey Kladov <aleksey.kladov@gmail.com>
Fri, 4 May 2018 14:53:10 +0000 (17:53 +0300)
This reverts commit db3328f8f7b96701faa62756a0d55ed71899d894.

We get spurious errors for thouse tests even with debug info disabled,
so let's reenable it back.

tests/testsuite/build_script.rs
tests/testsuite/freshness.rs

index b3cf382e2a7d9370c779aa53756fa201082205eb..ec68f6cd6179e088c02425ab28e48592eb6d674c 100644 (file)
@@ -3742,9 +3742,6 @@ fn rename_with_link_search_path() {
             name = "bar"
             version = "0.5.0"
             authors = []
-
-            [profile.dev]
-            debug = false
         "#,
         )
         .file(
index cd12af83a5203a45340d1d8a8e890aaec2455186..09f324d8ea7efed5a7c657301e074f77606034fd 100644 (file)
@@ -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]`
 ",
             ),