[Fuego] [PATCH 01/16] indentation: fix indentation for dhrystone parser

Daniel Sangorrin daniel.sangorrin at toshiba.co.jp
Thu Mar 30 01:04:29 UTC 2017


Signed-off-by: Daniel Sangorrin <daniel.sangorrin at toshiba.co.jp>
---
 engine/tests/Benchmark.Dhrystone/parser.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/engine/tests/Benchmark.Dhrystone/parser.py b/engine/tests/Benchmark.Dhrystone/parser.py
index 58d62ce..d98d2d5 100755
--- a/engine/tests/Benchmark.Dhrystone/parser.py
+++ b/engine/tests/Benchmark.Dhrystone/parser.py
@@ -16,9 +16,9 @@ cur_raw_values = cur_file.readlines()
 cur_file.close()
 
 for cur_item in cur_raw_values:
-	cur_match = re.match(cur_search_str, cur_item)
-	if cur_match:
-		cur_dict["Dhrystone"] = cur_match.group(3)
+    cur_match = re.match(cur_search_str, cur_item)
+    if cur_match:
+        cur_dict["Dhrystone"] = cur_match.group(3)
 
 sys.exit(plib.process_data(ref_section_pat, cur_dict, 's', 'FPS'))
 
-- 
2.7.4




More information about the Fuego mailing list