ignore gdb check for android

This commit is contained in:
Tim Neumann 2016-11-05 10:23:55 +01:00
parent f7107f32c2
commit d2cb515ab0

View File

@ -43,11 +43,12 @@ pub fn run(config: Config, testpaths: &TestPaths) {
}
}
_=> { }
}
if config.mode == DebugInfoGdb && config.gdb.is_none() {
panic!("gdb not available but debuginfo gdb debuginfo test requested");
_ => {
// android has it's own gdb handling
if config.mode == DebugInfoGdb && config.gdb.is_none() {
panic!("gdb not available but debuginfo gdb debuginfo test requested");
}
}
}
if config.verbose {