From dab541a4a8cba23a486cbdb9e0fc9219091da3f5 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 13:21:51 +0100 Subject: [PATCH] add debug prints --- openpower/sv_analysis.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openpower/sv_analysis.py b/openpower/sv_analysis.py index fae3be00..4e8ec186 100644 --- a/openpower/sv_analysis.py +++ b/openpower/sv_analysis.py @@ -25,6 +25,7 @@ def find_wiki_file(name): filedir = os.path.dirname(os.path.abspath(__file__)) tabledir = join(filedir, 'isatables') file_path = join(tabledir, name) + print ("find wiki file", name, file_path) return file_path # Return an array of dictionaries from the CSV file name: @@ -590,6 +591,7 @@ def process_csvs(): # Ignore those containing: valid test sprs for fname in glob(pth): + print ("checking", fname) if '-' in fname: continue if 'valid' in fname: -- 2.30.2