aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Salomon <bsalomon@google.com>2020-08-21 12:39:33 -0400
committerYi Kong <yikong@google.com>2021-12-16 06:40:10 +0000
commit94ed3ab33dd02c4f212ab514ddcb59810b2c5a4a (patch)
tree2b1dc885c6294be1650dec0bc9d69428a931a71c
parent81c069525ee8c577ddd32990837584a3341ee737 (diff)
downloadskqp-94ed3ab33dd02c4f212ab514ddcb59810b2c5a4a.tar.gz
Change-Id: Ic09346b6079e6f316c28e03ddb02f12b4af8a38d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/312482 Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
-rw-r--r--tests/CodecTest.cpp2
-rw-r--r--tests/PDFDocumentTest.cpp8
-rw-r--r--tests/PathTest.cpp8
3 files changed, 9 insertions, 9 deletions
diff --git a/tests/CodecTest.cpp b/tests/CodecTest.cpp
index 8c918a8395..3ce239ee8c 100644
--- a/tests/CodecTest.cpp
+++ b/tests/CodecTest.cpp
@@ -265,7 +265,7 @@ static void test_codec(skiatest::Reporter* r, const char* path, Codec* codec, Sk
static bool supports_partial_scanlines(const char path[]) {
static const char* const exts[] = {
- "jpg", "jpeg", "png", "webp"
+ "jpg", "jpeg", "png", "webp",
"JPG", "JPEG", "PNG", "WEBP"
};
diff --git a/tests/PDFDocumentTest.cpp b/tests/PDFDocumentTest.cpp
index 95821e8eb4..0d8e0a207f 100644
--- a/tests/PDFDocumentTest.cpp
+++ b/tests/PDFDocumentTest.cpp
@@ -211,10 +211,10 @@ DEF_TEST(SkPDF_unicode_metadata, r) {
}
sk_sp<SkData> data(wStream.detachAsData());
static const char* expectations[] = {
- "<</Title <FEFFD835DCD0D835DCD1D835DCD2D835DCD3D835DCD40020"
- "D835DCD5D835DCD6D835DCD7D835DCD8D835DCD9>",
- "/Author (ABCDE FGHIJ)",
- "Subject <FEFF03B103B203B303B403B5002003B603B703B803B903BA>",
+ ("<</Title <FEFFD835DCD0D835DCD1D835DCD2D835DCD3D835DCD40020"
+ "D835DCD5D835DCD6D835DCD7D835DCD8D835DCD9>"),
+ "/Author (ABCDE FGHIJ)",
+ "Subject <FEFF03B103B203B303B403B5002003B603B703B803B903BA>",
};
for (const char* expectation : expectations) {
if (!contains(data->bytes(), data->size(), expectation)) {
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index 0668098602..f03dd55103 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -4911,10 +4911,10 @@ DEF_TEST(NonFinitePathIteration, reporter) {
DEF_TEST(AndroidArc, reporter) {
const char* tests[] = {
- "M50,0A50,50,0,0 1 100,50 L100,85 A15,15,0,0 1 85,100 L50,100 A50,50,0,0 1 50,0z",
- "M50,0L92,0 A8,8,0,0 1 100,8 L100,92 A8,8,0,0 1 92,100 L8,100"
- " A8,8,0,0 1 0,92 L 0,8 A8,8,0,0 1 8,0z",
- "M50 0A50 50,0,1,1,50 100A50 50,0,1,1,50 0"
+ "M50,0A50,50,0,0 1 100,50 L100,85 A15,15,0,0 1 85,100 L50,100 A50,50,0,0 1 50,0z",
+ ("M50,0L92,0 A8,8,0,0 1 100,8 L100,92 A8,8,0,0 1 92,100 L8,100"
+ " A8,8,0,0 1 0,92 L 0,8 A8,8,0,0 1 8,0z"),
+ "M50 0A50 50,0,1,1,50 100A50 50,0,1,1,50 0"
};
for (auto test : tests) {
SkPath aPath;