Skip to content

Commit

Permalink
ignore gdb check for android
Browse files Browse the repository at this point in the history
  • Loading branch information
TimNN committed Nov 5, 2016
1 parent f7107f3 commit d2cb515
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d2cb515

Please sign in to comment.