ignore gdb check for android
This commit is contained in:
parent
f7107f32c2
commit
d2cb515ab0
1 changed files with 6 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue