From 222f5003f5be2fac805a1a5799d1c49a2f87e244 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 27 Jul 2018 16:06:32 -0700 Subject: systemc: Make verify.py delete obsolete diff files. If diff file exists but the underlying diff has been fixed, delete the diff file. Change-Id: Icadc21a61c084198a8a246ab6d00a9b885647cde Reviewed-on: https://gem5-review.googlesource.com/12056 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/tests/verify.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/systemc/tests') diff --git a/src/systemc/tests/verify.py b/src/systemc/tests/verify.py index 822065cb9..ad6131970 100755 --- a/src/systemc/tests/verify.py +++ b/src/systemc/tests/verify.py @@ -212,9 +212,9 @@ class LogChecker(Checker): with open(self.test) as test_f, open(self.ref) as ref_f: test = re.sub(self.test_filt, '', test_f.read()) ref = re.sub(self.ref_filt, '', ref_f.read()) + diff_file = '.'.join([ref_file, 'diff']) + diff_path = os.path.join(self.out_dir, diff_file) if test != ref: - diff_file = '.'.join([ref_file, 'diff']) - diff_path = os.path.join(self.out_dir, diff_file) with open(diff_path, 'w') as diff_f: for line in difflib.unified_diff( ref.splitlines(True), test.splitlines(True), @@ -222,6 +222,9 @@ class LogChecker(Checker): tofile=test_file): diff_f.write(line) return False + else: + if os.path.exists(diff_path): + os.unlink(diff_path) return True class VerifyPhase(TestPhaseBase): -- cgit v1.2.3