From 5ac1b936ef00841e6c5452d1ef360ab539d31dc2 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 25 Jun 2013 21:54:32 +0200 Subject: [PATCH] test_gdb.py: ignore also "warning: Source file is more recent than executable." pattern --- Lib/test/test_gdb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index abcb23e7a64..4c037a17df7 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -164,6 +164,7 @@ class DebuggerTests(unittest.TestCase): 'linux-gate.so', 'Do you need "set solib-search-path" or ' '"set sysroot"?', + 'warning: Source file is more recent than executable.', ) for line in errlines: if not line.startswith(ignore_patterns):