From 653d3761c17475375dca69f649b817e4d0e36a36 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Wed, 4 Feb 2015 20:40:20 -0500 Subject: [PATCH] Returning SUCCESS --- lib/gdbcommand.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/gdbcommand.py b/lib/gdbcommand.py index 8c35094..32565c3 100644 --- a/lib/gdbcommand.py +++ b/lib/gdbcommand.py @@ -33,6 +33,8 @@ class CopyOldGDBSumFile (ShellCommand): # If the dest file does not exist, ignore pass + return SUCCESS + class GdbCatSumfileCommand(ShellCommand): name = 'regressions' command = ['cat', 'gdb.sum']