summaryrefslogtreecommitdiff
path: root/platform/android/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/scripts')
-rw-r--r--platform/android/scripts/exclude-activity-gen.json3
-rw-r--r--platform/android/scripts/run-render-test.py24
2 files changed, 26 insertions, 1 deletions
diff --git a/platform/android/scripts/exclude-activity-gen.json b/platform/android/scripts/exclude-activity-gen.json
index d7d9c16550..36d8d36e68 100644
--- a/platform/android/scripts/exclude-activity-gen.json
+++ b/platform/android/scripts/exclude-activity-gen.json
@@ -34,5 +34,6 @@
"ZoomFunctionSymbolLayerActivity",
"SymbolGeneratorActivity",
"TextureViewTransparentBackgroundActivity",
- "SimpleMapActivity"
+ "SimpleMapActivity",
+ "RenderTestActivity"
]
diff --git a/platform/android/scripts/run-render-test.py b/platform/android/scripts/run-render-test.py
new file mode 100644
index 0000000000..83376256a4
--- /dev/null
+++ b/platform/android/scripts/run-render-test.py
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+import os
+from shutil import copyfile
+
+catPath = os.getcwd() + "/platform/android/build/render-test/render/"
+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"
+
+ copyfile(inputPath + "/expected.png", expected)
+ copyfile(inputPath + "/style.json", outputPath + "/style.json")
+ pixelmatch = "node_modules/pixelmatch/bin/pixelmatch " + actual + " " + expected + " " + output + " 0.1"
+
+ print
+ print "Pixel match "+ cat + " " + test
+ os.system(pixelmatch)
+print