mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 09:20:06 +01:00
test: Add script to display the difference between two result sets
This commit is contained in:
parent
60c2f69535
commit
e40806ecdf
1 changed files with 57 additions and 0 deletions
57
test/compare-results
Executable file
57
test/compare-results
Executable file
|
|
@ -0,0 +1,57 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
# Print the difference between two results.txt files from cairo tests
|
||||
|
||||
import sys
|
||||
|
||||
old_filename = sys.argv[1]
|
||||
new_filename = sys.argv[2]
|
||||
|
||||
results = { }
|
||||
|
||||
f = open(old_filename, "r")
|
||||
for line in f.readlines():
|
||||
if 'RESULT:' not in line:
|
||||
continue
|
||||
|
||||
items = line.split(" ")
|
||||
testcase = dict(zip(items[0::2], items[1::2]))
|
||||
|
||||
try:
|
||||
k = "%s.%s.%s" %(
|
||||
testcase['TEST:'],
|
||||
testcase['TARGET:'],
|
||||
testcase.get('FORMAT:', ''))
|
||||
results[k] = testcase['RESULT:']
|
||||
except:
|
||||
print line
|
||||
raise
|
||||
|
||||
f = open(new_filename, "r")
|
||||
for line in f.readlines():
|
||||
if 'RESULT:' not in line:
|
||||
# Not a results line. Skip
|
||||
continue
|
||||
|
||||
items = line.split(" ")
|
||||
testcase = dict(zip(items[0::2], items[1::2]))
|
||||
try:
|
||||
k = "%s.%s.%s" %(
|
||||
testcase['TEST:'],
|
||||
testcase['TARGET:'],
|
||||
testcase.get('FORMAT:',''))
|
||||
except:
|
||||
print line
|
||||
raise
|
||||
|
||||
if k not in results.keys():
|
||||
# New test? Skip
|
||||
continue
|
||||
|
||||
old_val = results[k].strip()
|
||||
new_val = testcase['RESULT:'].strip()
|
||||
if old_val == new_val:
|
||||
# Test didn't change. Skip
|
||||
continue
|
||||
|
||||
print("%s -> %s # %s" % (old_val, new_val, k))
|
||||
Loading…
Add table
Reference in a new issue