File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
tests/difftests/runner/src Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ spirv-tools = { version = "0.12", default-features = false }
51
51
rustc_codegen_spirv = { path = " ./crates/rustc_codegen_spirv" , version = " =0.9.0" , default-features = false }
52
52
rustc_codegen_spirv-types = { path = " ./crates/rustc_codegen_spirv-types" , version = " =0.9.0" }
53
53
rustc_codegen_spirv-target-specs = { path = " crates/rustc_codegen_spirv-target-specs" , version = " =0.9.0" }
54
- difftest-runner = { path = " tests/difftests/runner" }
54
+ difftest-runner = { path = " tests/difftests/runner" , default-features = false }
55
55
tracing = " 0.1"
56
56
tracing-subscriber = { version = " 0.3.3" , features = [" env-filter" , " json" ] }
57
57
Original file line number Diff line number Diff line change @@ -634,6 +634,10 @@ impl Runner {
634
634
635
635
pub fn forward_features ( cmd : & mut Command ) {
636
636
cmd. arg ( "--features" ) ;
637
+ #[ cfg( all( feature = "use-compiled-tools" , feature = "use-installed-tools" ) ) ]
638
+ compile_error ! (
639
+ "Features `use-compiled-tools` and `use-installed-tools` are mutually exclusive"
640
+ ) ;
637
641
#[ cfg( feature = "use-compiled-tools" ) ]
638
642
{
639
643
cmd. arg ( "difftest/use-compiled-tools" ) ;
You can’t perform that action at this time.
0 commit comments