Skip to content

Commit 5c384ab

Browse files
committed
compiletest: Do not run debuginfo tests with gdb on msvc targets
1 parent 6d218db commit 5c384ab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tools/compiletest/src/main.rs

+4
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,10 @@ fn configure_gdb(config: &Config) -> Option<Config> {
366366
return None;
367367
}
368368

369+
if util::matches_env(&config.target, "msvc") {
370+
return None;
371+
}
372+
369373
if config.remote_test_client.is_some() && !config.target.contains("android") {
370374
println!(
371375
"WARNING: debuginfo tests are not available when \

0 commit comments

Comments
 (0)