forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#8897 - tamaroning:improve_dbg, r=Alexendoo
Introduce `allow-dbg-in-tests` config value related to: Issue rust-lang#8758, PR rust-lang/rust-clippy#8838 changelog: Introduced `allow-dbg-in-tests` config value. [dbg_macro] does not allow `dbg!` in test code by default.
- Loading branch information
Showing
8 changed files
with
200 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
allow-dbg-in-tests = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// compile-flags: --test | ||
#![warn(clippy::dbg_macro)] | ||
|
||
fn foo(n: u32) -> u32 { | ||
if let Some(n) = dbg!(n.checked_sub(4)) { n } else { n } | ||
} | ||
|
||
fn factorial(n: u32) -> u32 { | ||
if dbg!(n <= 1) { | ||
dbg!(1) | ||
} else { | ||
dbg!(n * factorial(n - 1)) | ||
} | ||
} | ||
|
||
fn main() { | ||
dbg!(42); | ||
dbg!(dbg!(dbg!(42))); | ||
foo(3) + dbg!(factorial(4)); | ||
dbg!(1, 2, dbg!(3, 4)); | ||
dbg!(1, 2, 3, 4, 5); | ||
} | ||
|
||
#[test] | ||
pub fn issue8481() { | ||
dbg!(1); | ||
} | ||
|
||
#[cfg(test)] | ||
fn foo2() { | ||
dbg!(1); | ||
} | ||
|
||
#[cfg(test)] | ||
mod mod1 { | ||
fn func() { | ||
dbg!(1); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:5:22 | ||
| | ||
LL | if let Some(n) = dbg!(n.checked_sub(4)) { n } else { n } | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::dbg-macro` implied by `-D warnings` | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | if let Some(n) = n.checked_sub(4) { n } else { n } | ||
| ~~~~~~~~~~~~~~~~ | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:9:8 | ||
| | ||
LL | if dbg!(n <= 1) { | ||
| ^^^^^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | if n <= 1 { | ||
| ~~~~~~ | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:10:9 | ||
| | ||
LL | dbg!(1) | ||
| ^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | 1 | ||
| | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:12:9 | ||
| | ||
LL | dbg!(n * factorial(n - 1)) | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | n * factorial(n - 1) | ||
| | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:17:5 | ||
| | ||
LL | dbg!(42); | ||
| ^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | 42; | ||
| ~~ | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:18:5 | ||
| | ||
LL | dbg!(dbg!(dbg!(42))); | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | dbg!(dbg!(42)); | ||
| ~~~~~~~~~~~~~~ | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:19:14 | ||
| | ||
LL | foo(3) + dbg!(factorial(4)); | ||
| ^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | foo(3) + factorial(4); | ||
| ~~~~~~~~~~~~ | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:20:5 | ||
| | ||
LL | dbg!(1, 2, dbg!(3, 4)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | (1, 2, dbg!(3, 4)); | ||
| ~~~~~~~~~~~~~~~~~~ | ||
|
||
error: `dbg!` macro is intended as a debugging tool | ||
--> $DIR/dbg_macro.rs:21:5 | ||
| | ||
LL | dbg!(1, 2, 3, 4, 5); | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: ensure to avoid having uses of it in version control | ||
| | ||
LL | (1, 2, 3, 4, 5); | ||
| ~~~~~~~~~~~~~~~ | ||
|
||
error: aborting due to 9 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters