From b2e087a9dbc5fd4ea18150a61154f2dafd552027 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Wed, 2 Mar 2016 22:35:28 +0000 Subject: [PATCH] Fixed missing results. --- BUGS | 4 ++-- vigil | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUGS b/BUGS index 5ff9fd9..2c1783b 100644 --- a/BUGS +++ b/BUGS @@ -15,8 +15,6 @@ Current (tool related) - disassemble for python doesn't always work. - gut had an error with utf-8. A traceback printed directly on the screen, garbling the interface. -- Some results are always missing their contents and are showing "?". - e.g. golden-files/results/uncrustify-hello_c <- contents and metadata - There is much less code coverage than I expect from vigil.py, tools.py and worker.py. @@ -229,6 +227,8 @@ Fixed - If a tool runs a script that needs sudo, the password prompt is garbling the screen and stopping input. <- Now vigil always gets sudo. +- Some results are always missing their contents and are showing "?". + e.g. golden-files/results/uncrustify-hello_c <- contents and metadata Won't fix diff --git a/vigil b/vigil index 5e09732..6620e68 100755 --- a/vigil +++ b/vigil @@ -270,7 +270,7 @@ class Summary: else: result = tools.Result(path, tool) jobs_added = True - all_results.add(result) + all_results.add(result) if result.is_completed: completed_total += 1 file_entry = new_cache.setdefault(file_key, {})