From bbe1cf27ab79915279cd49f84c63592201b2c822 Mon Sep 17 00:00:00 2001 From: Florian Angerer <florian.angerer@oracle.com> Date: Tue, 12 Dec 2017 19:53:29 +0100 Subject: [PATCH] Ignore comment lines in fuzzy compare. --- mx.fastr/mx_fastr_pkgs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mx.fastr/mx_fastr_pkgs.py b/mx.fastr/mx_fastr_pkgs.py index 9f27c62056..fefdcb8971 100644 --- a/mx.fastr/mx_fastr_pkgs.py +++ b/mx.fastr/mx_fastr_pkgs.py @@ -763,7 +763,8 @@ def _capture_prompt(lines, idx): def _is_statement_begin(captured_prompt, line): - return line.startswith(captured_prompt) and line.replace(captured_prompt, "").strip() is not "" + line_wo_prompt = line.replace(captured_prompt, "").strip() + return line.startswith(captured_prompt) and line_wo_prompt is not "" and not line_wo_prompt.startswith("#") def pkgtest_cmp(args): -- GitLab