From 8184e3d89c2f5c45579c592c346415db14e0c191 Mon Sep 17 00:00:00 2001 From: Ned Williamson Date: Mon, 19 Jan 2015 17:24:29 -0500 Subject: [PATCH] slight line width tweak --- static2/testing.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/static2/testing.py b/static2/testing.py index 56ae512e..34211a0b 100755 --- a/static2/testing.py +++ b/static2/testing.py @@ -75,7 +75,8 @@ def test_files(fns,quiet=False,profile=False): print "User stopped processing test cases." sys.exit() except: - print "{} {}: {} engine failed to process file".format(fail, short_fn, engine) + print "{} {}: {} engine failed to process file".format(fail, short_fn, + engine) continue if elf.has_dwarf_info(): @@ -85,7 +86,10 @@ def test_files(fns,quiet=False,profile=False): missed = dwarf_functions - functions total_fxns = len(dwarf_functions) if len(missed) == 0: - print "{} {}: {} engine found all {} function(s)".format(ok_green, short_fn, engine, total_fxns) + print "{} {}: {} engine found all {} function(s)".format(ok_green, + short_fn, + engine, + total_fxns) else: status = fail if len(missed) == total_fxns else warn if args.verbose: