From d2cb515ab045eefa1fb7ec36078fa0440e4affec Mon Sep 17 00:00:00 2001 From: Tim Neumann Date: Sat, 5 Nov 2016 10:23:55 +0100 Subject: [PATCH] ignore gdb check for android --- src/tools/compiletest/src/runtest.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 3c6903ac21d..c409991a559 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -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 {