File tree Expand file tree Collapse file tree
tests/difftests/runner/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ expect-test = "1.5.1"
8585regex-lite = " 0.1.9"
8686
8787# difftest libraries mirrored from difftest workspace
88- difftest-runner = { path = " tests/difftests/runner" }
88+ difftest-runner = { path = " tests/difftests/runner" , default-features = false }
8989
9090# External dependencies that need to be mentioned more than once.
9191tracing = " 0.1"
Original file line number Diff line number Diff line change @@ -634,6 +634,10 @@ impl Runner {
634634
635635pub fn forward_features ( cmd : & mut Command ) {
636636 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+ ) ;
637641 #[ cfg( feature = "use-compiled-tools" ) ]
638642 {
639643 cmd. arg ( "difftest/use-compiled-tools" ) ;
You can’t perform that action at this time.
0 commit comments