summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/xls_to_doc.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/xls_to_doc.py b/scripts/xls_to_doc.py
index 749666faf..0d6ad0e0b 100755
--- a/scripts/xls_to_doc.py
+++ b/scripts/xls_to_doc.py
@@ -317,6 +317,11 @@ class FillTests(TestList):
print(f"{testname}@{subtest} field {field}: Value unchanged: {value}. Ignoring it")
continue
+ if value == self.doc[test_nr].get(field, ""):
+ if self.verbose:
+ print(f"{testname}@{subtest} field {field}: Value matches common field. Ignoring it")
+ continue
+
if self.verbose > 0:
print(f"Update {testname}@{subtest} field {field} on line {line}:")
print(f" Change from {doc_value} to {value}")