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 Review URL: https://codereview.chromium.org/453733002 git-svn-id: svn://svn.chromium.org/blink/trunk@179862 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Showing
Please register or sign in to comment