We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7107f3 commit d2cb515Copy full SHA for d2cb515
src/tools/compiletest/src/runtest.rs
@@ -43,11 +43,12 @@ pub fn run(config: Config, testpaths: &TestPaths) {
43
}
44
45
46
- _=> { }
47
- }
48
-
49
- if config.mode == DebugInfoGdb && config.gdb.is_none() {
50
- 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");
+ }
51
52
53
54
if config.verbose {
0 commit comments