Remove unnecessary pixel expectations (except platform/win platform/mac)
The pixel expectations existed when the tests were pixel tests but now the
tests are text-only tests.
CL was generated with the following python script:
files = subprocess.Popen(['find', '.', '-type', 'f', '-not', '-name', '*-expected.*'], stdout=subprocess.PIPE).stdout.readlines()
for f in files:
f = f.strip()
c = open(f).read()
if (c.find('text-based-repaint.js') != -1 and c.find('runRepaintAndPixelTest') == -1) or c.find('testRunner.dumpAsText()') != -1:
test_name = re.sub('\.[a-z]*$', '', f)
os.system('rm ' + test_name + '-expected.png' + ' platform/*/' + test_name + '-expected.png')
False positives are restored manually according to trybot results.
R=dpranke@chromium.org
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=179862
Issue 453733002: Remove unnecessary pixel expectations (except platform/win platform/mac)
(Closed)
Created 6 years, 4 months ago by Xianzhu
Modified 6 years, 4 months ago
Reviewers: Dirk Pranke
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 0