summaryrefslogtreecommitdiff
path: root/test/fixtures/util.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-01-04 12:29:38 +0100
committerKonstantin Käfer <mail@kkaefer.com>2016-01-08 13:23:01 +0100
commit7e815aed2e6adb73b3596b450bb85e93ce569e2a (patch)
tree0cc3e0e02c61bbc934e00bc642991011cc99ec1d /test/fixtures/util.hpp
parent4479f5db6c1ce26bc187a1b5a938f4bdb45915d4 (diff)
downloadqtlocation-mapboxgl-7e815aed2e6adb73b3596b450bb85e93ce569e2a.tar.gz
[test] allow aborting rendering after a timeout
Diffstat (limited to 'test/fixtures/util.hpp')
-rw-r--r--test/fixtures/util.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/fixtures/util.hpp b/test/fixtures/util.hpp
index 71f7c2a4b3..e2cadc50dd 100644
--- a/test/fixtures/util.hpp
+++ b/test/fixtures/util.hpp
@@ -3,6 +3,7 @@
#include <mbgl/util/image.hpp>
+#include <chrono>
#include <cstdint>
#include <gtest/gtest.h>
@@ -35,13 +36,13 @@ private:
uint64_t crc64(const char*, size_t);
uint64_t crc64(const std::string&);
-PremultipliedImage render(Map&);
+PremultipliedImage render(Map&,
+ std::chrono::milliseconds timeout = std::chrono::milliseconds(1000));
void checkImage(const std::string& base,
const PremultipliedImage& actual,
double imageThreshold = 0,
double pixelThreshold = 0);
-
}
}