diff --git a/scripts/wk/hw/surface_scan.py b/scripts/wk/hw/surface_scan.py index f6452bc5..f4913a8a 100644 --- a/scripts/wk/hw/surface_scan.py +++ b/scripts/wk/hw/surface_scan.py @@ -29,8 +29,10 @@ def check_surface_scan_results(test_obj, log_path) -> None: """Check results and set test status.""" with open(log_path, 'r', encoding='utf-8') as _f: for line in _f.readlines(): + # TODO: Test further to restrict report to just the results line = strip_colors(line.strip()) - if not line or BADBLOCKS_SKIP_REGEX.match(line): + #if not line or BADBLOCKS_SKIP_REGEX.match(line): + if not line: # Skip continue match = BADBLOCKS_REGEX.search(line)