summaryrefslogtreecommitdiff
path: root/platform/android/scripts/run-render-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/scripts/run-render-test.py')
-rw-r--r--platform/android/scripts/run-render-test.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/platform/android/scripts/run-render-test.py b/platform/android/scripts/run-render-test.py
deleted file mode 100644
index 940ae7a3df..0000000000
--- a/platform/android/scripts/run-render-test.py
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/python
-
-import os
-import shutil
-
-catPath = os.getcwd() + "/platform/android/build/render-test/"
-failCounter = 0
-testCounter = 0
-for cat in os.listdir(catPath):
- testPath = catPath + cat + "/"
- for test in os.listdir(testPath):
- inputPath = os.getcwd() + "/mapbox-gl-js/test/integration/render-tests/" + cat + "/" + test
- outputPath = testPath + test
-
- expected = outputPath + "/expected.png"
- actual = outputPath + "/actual.png"
- output = outputPath + "/output.png"
-
- shutil.copyfile(inputPath + "/expected.png", expected)
- shutil.copyfile(inputPath + "/style.json", outputPath + "/style.json")
- pixelmatchCommand = "node_modules/pixelmatch/bin/pixelmatch " + actual + " " + expected + " " + output + " 0.1"
-
- print "Pixel match " + cat + " " + test
-
- with os.popen(pixelmatchCommand) as f:
- for line_terminated in f:
- line = line_terminated.rstrip('\n')
- pair = line.split(": ")
- if pair[0] == "error":
- testCounter += 1
- currentError = pair[1]
- if currentError != "0%":
- failCounter += 1
- # below deletes successful results
- # print cat + " " + test + " " + currentError
- # else:
- # try:
- # if os.path.isdir(outputPath):
- # shutil.rmtree(outputPath)
- # except OSError, e:
- # print ("Error: %s - %s." % (e.filename, e.strerror))
-print
-print str(failCounter) + "/" + str(testCounter)