compiletest: Do not run debuginfo tests with gdb on msvc targets

This commit is contained in:
Tomasz Miąsko 2020-01-23 00:00:00 +00:00
parent 6d218db26d
commit 5c384ab00c

View File

@ -366,6 +366,10 @@ fn configure_gdb(config: &Config) -> Option<Config> {
return None;
}
if util::matches_env(&config.target, "msvc") {
return None;
}
if config.remote_test_client.is_some() && !config.target.contains("android") {
println!(
"WARNING: debuginfo tests are not available when \