tests: we now allow a profile.debug

This commit is contained in:
Dan Aloni 2019-06-01 13:49:51 +03:00
parent 55f4b67555
commit a72c405fe5

View File

@ -699,19 +699,13 @@ warning: unused manifest key: target.foo.bar
[profile.debug]
debug = 1
inherits = "dev"
"#,
)
.file("src/lib.rs", "")
.build();
p.cargo("build")
.with_stderr(
"\
warning: unused manifest key: profile.debug
warning: use `[profile.dev]` to configure debug builds
[..]
[..]",
)
.run();
let p = project()