From b881a5ccca7acf009f49344b9aa3f0162231d5af Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 9 Dec 2020 13:06:05 +0100 Subject: Fixing segfault log with tested arguments --- prettier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prettier.py b/prettier.py index 04bb04c..62450b5 100644 --- a/prettier.py +++ b/prettier.py @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/02/05 23:04:13 by cacharle #+# #+# # -# Updated: 2020/12/09 12:56:07 by charles ### ########.fr # +# Updated: 2020/12/09 13:05:13 by charles ### ########.fr # # # # **************************************************************************** # @@ -89,7 +89,7 @@ if __name__ == "__main__": for k, v in logs.items(): for e in v["ko_info"]: if e['type'] == "SEGFAULT": - print("{} : {}".format(k, red('SEGFAULT'))) + print("{} : {}: {}".format(k, red('SEGFAULT'), e['with'])) elif e['type'] == "COMPARE": p = str(k) if e["with"] is not None: -- cgit