Skip to content

Commit 41691d3

Browse files
committed
Set test = false in the compiletest binary crate
The binary crate is a tiny stub; all of the logic and tests should be in the library crate. Disabling unit tests for the binary crate makes `x test compiletest` less noisy.
1 parent 3ff30e7 commit 41691d3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/tools/compiletest/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ doctest = false
99
[[bin]]
1010
name = "compiletest"
1111
path = "src/bin/main.rs"
12+
# The compiletest binary crate is a tiny stub that shouldn't contain any unit
13+
# tests of its own; all of the logic is in the library crate.
14+
test = false
1215

1316
[dependencies]
1417
# tidy-alphabetical-start

0 commit comments

Comments
 (0)