9ca382f95f
This involves hacking the code used to run cargo test on various packages, because it reads Cargo.lock to determine which packages should be tested. This change implements a blacklist, since that will catch new crates when they are added in the future.
14 lines
229 B
TOML
14 lines
229 B
TOML
[workspace]
|
|
members = [
|
|
"bootstrap",
|
|
"rustc",
|
|
"rustc/std_shim",
|
|
"rustc/test_shim",
|
|
"tools/cargotest",
|
|
"tools/compiletest",
|
|
"tools/error_index_generator",
|
|
"tools/linkchecker",
|
|
"tools/rustbook",
|
|
"tools/tidy",
|
|
]
|