Skip to content

Commit d2cb515

Browse files
committed
ignore gdb check for android
1 parent f7107f3 commit d2cb515

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/tools/compiletest/src/runtest.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ pub fn run(config: Config, testpaths: &TestPaths) {
4343
}
4444
}
4545

46-
_=> { }
47-
}
48-
49-
if config.mode == DebugInfoGdb && config.gdb.is_none() {
50-
panic!("gdb not available but debuginfo gdb debuginfo test requested");
46+
_ => {
47+
// android has it's own gdb handling
48+
if config.mode == DebugInfoGdb && config.gdb.is_none() {
49+
panic!("gdb not available but debuginfo gdb debuginfo test requested");
50+
}
51+
}
5152
}
5253

5354
if config.verbose {

0 commit comments

Comments
 (0)