Home
last modified time | relevance | path

Searched refs:REPORTER_ASSERT (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/skia/tests/
DTestConfigParsing.cpp39 REPORTER_ASSERT(reporter, configs.count() == 1); in DEF_TEST()
40 REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gl")); in DEF_TEST()
41 REPORTER_ASSERT(reporter, configs[0]->getViaParts().count() == 0); in DEF_TEST()
43 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()); in DEF_TEST()
44 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getContextType() in DEF_TEST()
46 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseNVPR() == false); in DEF_TEST()
47 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseInstanced() == false); in DEF_TEST()
48 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseDIText() == false); in DEF_TEST()
49 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getSamples() == 0); in DEF_TEST()
50 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getColorType() == kRGBA_8888_SkColorType); in DEF_TEST()
[all …]
DStringTest.cpp41 REPORTER_ASSERT(reporter, a.isEmpty()); in DEF_TEST()
42 REPORTER_ASSERT(reporter, a == b && a == c && a == d); in DEF_TEST()
50 REPORTER_ASSERT(reporter, !a.isEmpty()); in DEF_TEST()
51 REPORTER_ASSERT(reporter, a.size() == 5); in DEF_TEST()
52 REPORTER_ASSERT(reporter, a == b && a == c && a == d); in DEF_TEST()
53 REPORTER_ASSERT(reporter, a.equals("hello", 5)); in DEF_TEST()
54 REPORTER_ASSERT(reporter, a.equals("hello")); in DEF_TEST()
55 REPORTER_ASSERT(reporter, !a.equals("help")); in DEF_TEST()
57 REPORTER_ASSERT(reporter, a.startsWith("hell")); in DEF_TEST()
58 REPORTER_ASSERT(reporter, a.startsWith('h')); in DEF_TEST()
[all …]
DSkSLMemoryLayoutTest.cpp20 REPORTER_ASSERT(r, 4 == layout.size(*context.fFloat_Type)); in DEF_TEST()
21 REPORTER_ASSERT(r, 8 == layout.size(*context.fVec2_Type)); in DEF_TEST()
22 REPORTER_ASSERT(r, 12 == layout.size(*context.fVec3_Type)); in DEF_TEST()
23 REPORTER_ASSERT(r, 16 == layout.size(*context.fVec4_Type)); in DEF_TEST()
24 REPORTER_ASSERT(r, 4 == layout.size(*context.fInt_Type)); in DEF_TEST()
25 REPORTER_ASSERT(r, 8 == layout.size(*context.fIVec2_Type)); in DEF_TEST()
26 REPORTER_ASSERT(r, 12 == layout.size(*context.fIVec3_Type)); in DEF_TEST()
27 REPORTER_ASSERT(r, 16 == layout.size(*context.fIVec4_Type)); in DEF_TEST()
28 REPORTER_ASSERT(r, 1 == layout.size(*context.fBool_Type)); in DEF_TEST()
29 REPORTER_ASSERT(r, 2 == layout.size(*context.fBVec2_Type)); in DEF_TEST()
[all …]
DVkHeapTests.cpp28 REPORTER_ASSERT(reporter, heap.alloc(64 * 1024, &alloc0)); in subheap_test()
29 REPORTER_ASSERT(reporter, alloc0.fOffset == 0); in subheap_test()
30 REPORTER_ASSERT(reporter, alloc0.fSize == 64 * 1024); in subheap_test()
31 REPORTER_ASSERT(reporter, heap.freeSize() == 0 && heap.largestBlockSize() == 0); in subheap_test()
33 REPORTER_ASSERT(reporter, heap.freeSize() == 64*1024 && heap.largestBlockSize() == 64 * 1024); in subheap_test()
36 REPORTER_ASSERT(reporter, heap.alloc(16 * 1024, &alloc0)); in subheap_test()
37 REPORTER_ASSERT(reporter, heap.alloc(23 * 1024, &alloc1)); in subheap_test()
38 REPORTER_ASSERT(reporter, heap.alloc(18 * 1024, &alloc2)); in subheap_test()
39 REPORTER_ASSERT(reporter, heap.freeSize() == 7 * 1024 && heap.largestBlockSize() == 7 * 1024); in subheap_test()
42 REPORTER_ASSERT(reporter, heap.freeSize() == 30 * 1024 && heap.largestBlockSize() == 23 * 1024); in subheap_test()
[all …]
DGifTest.cpp59 REPORTER_ASSERT(r, imageDecodeSuccess); in test_gif_data_no_colormap()
60 REPORTER_ASSERT(r, bm.width() == 1); in test_gif_data_no_colormap()
61 REPORTER_ASSERT(r, bm.height() == 1); in test_gif_data_no_colormap()
62 REPORTER_ASSERT(r, !(bm.empty())); in test_gif_data_no_colormap()
64 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0x00000000); in test_gif_data_no_colormap()
70 REPORTER_ASSERT(r, imageDecodeSuccess); in test_gif_data()
71 REPORTER_ASSERT(r, bm.width() == 3); in test_gif_data()
72 REPORTER_ASSERT(r, bm.height() == 3); in test_gif_data()
73 REPORTER_ASSERT(r, !(bm.empty())); in test_gif_data()
75 REPORTER_ASSERT(r, bm.getColor(0, 0) == 0xffff0000); in test_gif_data()
[all …]
DSkPEGTest.cpp55 REPORTER_ASSERT(r, match == gTests[i].fMatch); in test_EOS()
56 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr)); in test_EOS()
75 REPORTER_ASSERT(r, match == gTests[i].fMatch); in test_LIT()
76 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_LIT()
79 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match(""))); in test_LIT()
80 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match("Fo"))); in test_LIT()
81 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match("FoO"))); in test_LIT()
82 REPORTER_ASSERT(r, (LIT<'F', 'o', 'o'>::Match("Foo"))); in test_LIT()
83 REPORTER_ASSERT(r, (LIT<'F', 'o', 'o'>::Match("Foobar"))); in test_LIT()
110 REPORTER_ASSERT(r, match == gTests[i].fMatch); in test_Alpha()
[all …]
DMetaDataTest.cpp14 REPORTER_ASSERT(reporter, ref.unique()); in test_ptrs()
21 REPORTER_ASSERT(reporter, md0.findRefCnt(name)); in test_ptrs()
22 REPORTER_ASSERT(reporter, md0.hasRefCnt(name, &ref)); in test_ptrs()
23 REPORTER_ASSERT(reporter, !ref.unique()); in test_ptrs()
26 REPORTER_ASSERT(reporter, md1.findRefCnt(name)); in test_ptrs()
27 REPORTER_ASSERT(reporter, md1.hasRefCnt(name, &ref)); in test_ptrs()
28 REPORTER_ASSERT(reporter, !ref.unique()); in test_ptrs()
30 REPORTER_ASSERT(reporter, md0.removeRefCnt(name)); in test_ptrs()
31 REPORTER_ASSERT(reporter, !md0.findRefCnt(name)); in test_ptrs()
32 REPORTER_ASSERT(reporter, !md0.hasRefCnt(name, &ref)); in test_ptrs()
[all …]
DMatrixTest.cpp45 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal()
48 REPORTER_ASSERT(reporter, foundZeroSignDiff); in are_equal()
59 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal()
62 REPORTER_ASSERT(reporter, foundNaN); in are_equal()
80 REPORTER_ASSERT(reporter, buffer[0] == a); in assert9()
81 REPORTER_ASSERT(reporter, buffer[1] == b); in assert9()
82 REPORTER_ASSERT(reporter, buffer[2] == c); in assert9()
83 REPORTER_ASSERT(reporter, buffer[3] == d); in assert9()
84 REPORTER_ASSERT(reporter, buffer[4] == e); in assert9()
85 REPORTER_ASSERT(reporter, buffer[5] == f); in assert9()
[all …]
DSkNxTest.cpp23 REPORTER_ASSERT(r, ok); in test_Nf()
27 REPORTER_ASSERT(r, ok); in test_Nf()
64 REPORTER_ASSERT(r, (a == b).allTrue()); in test_Nf()
65 REPORTER_ASSERT(r, (a+b == a*b-b).anyTrue()); in test_Nf()
66 REPORTER_ASSERT(r, !(a+b == a*b-b).allTrue()); in test_Nf()
67 REPORTER_ASSERT(r, !(a+b == a*b).anyTrue()); in test_Nf()
68 REPORTER_ASSERT(r, !(a != b).anyTrue()); in test_Nf()
69 REPORTER_ASSERT(r, (a < fours).anyTrue()); in test_Nf()
70 REPORTER_ASSERT(r, (a <= fours).anyTrue()); in test_Nf()
71 REPORTER_ASSERT(r, !(a > fours).allTrue()); in test_Nf()
[all …]
DArenaAllocTest.cpp72 REPORTER_ASSERT(r, *arena.make<int>(3) == 3); in DEF_TEST()
74 REPORTER_ASSERT(r, foo->x == 3); in DEF_TEST()
75 REPORTER_ASSERT(r, foo->y == 4.0f); in DEF_TEST()
76 REPORTER_ASSERT(r, created == 1); in DEF_TEST()
77 REPORTER_ASSERT(r, destroyed == 0); in DEF_TEST()
81 REPORTER_ASSERT(r, zeroed[i] == 0); in DEF_TEST()
84 REPORTER_ASSERT(r, fooArray[3].x == -2); in DEF_TEST()
85 REPORTER_ASSERT(r, fooArray[4].y == -3.0f); in DEF_TEST()
86 REPORTER_ASSERT(r, created == 11); in DEF_TEST()
87 REPORTER_ASSERT(r, destroyed == 0); in DEF_TEST()
[all …]
DRefDictTest.cpp22 REPORTER_ASSERT(reporter, nullptr == dict.find(nullptr)); in DEF_TEST()
23 REPORTER_ASSERT(reporter, nullptr == dict.find("foo")); in DEF_TEST()
24 REPORTER_ASSERT(reporter, nullptr == dict.find("bar")); in DEF_TEST()
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo")); in DEF_TEST()
28 REPORTER_ASSERT(reporter, !data0.unique()); in DEF_TEST()
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo")); in DEF_TEST()
32 REPORTER_ASSERT(reporter, !data0.unique()); in DEF_TEST()
35 REPORTER_ASSERT(reporter, &data1 == dict.find("foo")); in DEF_TEST()
36 REPORTER_ASSERT(reporter, data0.unique()); in DEF_TEST()
37 REPORTER_ASSERT(reporter, !data1.unique()); in DEF_TEST()
[all …]
DGpuLayerCacheTest.cpp66 REPORTER_ASSERT(reporter, layer);
69 REPORTER_ASSERT(reporter, temp == layer);
71 REPORTER_ASSERT(reporter, TestingAccess::NumLayers(cache) == idOffset + i + 1);
73 REPORTER_ASSERT(reporter, picture.uniqueID() == layer->pictureID());
74 REPORTER_ASSERT(reporter, layer->start() == idOffset + i + 1);
75 REPORTER_ASSERT(reporter, layer->stop() == idOffset + i + 2);
76 REPORTER_ASSERT(reporter, !layer->texture());
77 REPORTER_ASSERT(reporter, !layer->paint());
78 REPORTER_ASSERT(reporter, !layer->isAtlased());
97 REPORTER_ASSERT(reporter, needsRerendering);
[all …]
DResourceCacheTest.cpp79 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
119 REPORTER_ASSERT(reporter,
130 REPORTER_ASSERT(reporter,
147 REPORTER_ASSERT(reporter,
169 REPORTER_ASSERT(reporter,
180 REPORTER_ASSERT(reporter,
198 REPORTER_ASSERT(reporter,
243 REPORTER_ASSERT(reporter, borrowed != nullptr && adopted != nullptr); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
256 REPORTER_ASSERT(reporter, borrowedIsAlive); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
257 REPORTER_ASSERT(reporter, !adoptedIsAlive); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
[all …]
DHashTest.cpp25 REPORTER_ASSERT(r, map.count() == 1); in DEF_TEST()
27 REPORTER_ASSERT(r, map.approxBytesUsed() > 0); in DEF_TEST()
30 REPORTER_ASSERT(r, found); in DEF_TEST()
31 REPORTER_ASSERT(r, *found == 4.0); in DEF_TEST()
34 REPORTER_ASSERT(r, count(map) == 1); in DEF_TEST()
37 REPORTER_ASSERT(r, found); in DEF_TEST()
38 REPORTER_ASSERT(r, *found == -3.0); in DEF_TEST()
40 REPORTER_ASSERT(r, !map.find(2)); in DEF_TEST()
49 REPORTER_ASSERT(r, found); in DEF_TEST()
50 REPORTER_ASSERT(r, *found == i*2.0); in DEF_TEST()
[all …]
DUtilsTest.cpp30 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
33 REPORTER_ASSERT(reporter, &obj == tmp.get()); in test_autounref()
34 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
36 REPORTER_ASSERT(reporter, &obj == tmp.release()); in test_autounref()
37 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
38 REPORTER_ASSERT(reporter, nullptr == tmp.release()); in test_autounref()
39 REPORTER_ASSERT(reporter, nullptr == tmp.get()); in test_autounref()
42 REPORTER_ASSERT(reporter, !obj.unique()); in test_autounref()
46 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
52 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray()
[all …]
DRefCntTest.cpp34 REPORTER_ASSERT(reporter, ref->unique()); in test_refCnt()
73 REPORTER_ASSERT(reporter, ref->unique()); in test_weakRefCnt()
74 SkDEBUGCODE(REPORTER_ASSERT(reporter, ref->getWeakCnt() == 1)); in test_weakRefCnt()
91 REPORTER_ASSERT(reporter, gRefCounter == ref); \
92 REPORTER_ASSERT(reporter, gUnrefCounter == unref); \
93 REPORTER_ASSERT(reporter, gNewCounter == make); \
94 REPORTER_ASSERT(reporter, gDeleteCounter == kill);
162 REPORTER_ASSERT(reporter, paint.fEffect.get() == nullptr); in DEF_TEST()
163 REPORTER_ASSERT(reporter, !paint.get()); in DEF_TEST()
168 REPORTER_ASSERT(reporter, paint.fEffect.get()->fRefCnt == 1); in DEF_TEST()
[all …]
DRoundRectTest.cpp31 REPORTER_ASSERT(reporter, (double) rr.radii(SkRRect::kUpperRight_Corner).fY + in test_tricky_radii()
47 REPORTER_ASSERT(reporter, SkRRect::kEmpty_Type == other.getType()); in test_empty_crbug_458524()
72 REPORTER_ASSERT(reporter, !r.isEmpty()); in test_empty()
75 REPORTER_ASSERT(reporter, !r.isEmpty()); in test_empty()
78 REPORTER_ASSERT(reporter, !r.isEmpty()); in test_empty()
81 REPORTER_ASSERT(reporter, !r.isEmpty()); in test_empty()
84 REPORTER_ASSERT(reporter, !r.isEmpty()); in test_empty()
89 REPORTER_ASSERT(reporter, r.isEmpty()); in test_empty()
92 REPORTER_ASSERT(reporter, r.isEmpty()); in test_empty()
95 REPORTER_ASSERT(reporter, r.isEmpty()); in test_empty()
[all …]
DTArrayTest.cpp20 REPORTER_ASSERT(reporter, a.empty()); in TestTSet_basic()
21 REPORTER_ASSERT(reporter, a.count() == 0); in TestTSet_basic()
25 REPORTER_ASSERT(reporter, !a.empty()); in TestTSet_basic()
26 REPORTER_ASSERT(reporter, a.count() == 1); in TestTSet_basic()
30 REPORTER_ASSERT(reporter, a.empty()); in TestTSet_basic()
31 REPORTER_ASSERT(reporter, a.count() == 0); in TestTSet_basic()
35 REPORTER_ASSERT(reporter, a.push_back() = 1); in TestTSet_basic()
37 REPORTER_ASSERT(reporter, !a.empty()); in TestTSet_basic()
38 REPORTER_ASSERT(reporter, a.count() == 1); in TestTSet_basic()
39 REPORTER_ASSERT(reporter, a[0] == 1); in TestTSet_basic()
[all …]
DPathMeasureTest.cpp93 REPORTER_ASSERT(reporter, length == SK_Scalar1*5); in DEF_TEST()
110 REPORTER_ASSERT(reporter, length == SK_Scalar1 * 4); in DEF_TEST()
113 REPORTER_ASSERT(reporter, length == SK_Scalar1); in DEF_TEST()
116 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent)); in DEF_TEST()
117 REPORTER_ASSERT(reporter, in DEF_TEST()
121 REPORTER_ASSERT(reporter, position.fY == 0); in DEF_TEST()
122 REPORTER_ASSERT(reporter, tangent.fX == -SK_Scalar1); in DEF_TEST()
123 REPORTER_ASSERT(reporter, tangent.fY == 0); in DEF_TEST()
140 REPORTER_ASSERT(reporter, length == SK_Scalar1 * 6); in DEF_TEST()
141 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent)); in DEF_TEST()
[all …]
DDataRefTest.cpp20 REPORTER_ASSERT(reporter, a->count() == b->count()); in test_is_equal()
25 REPORTER_ASSERT(reporter, sizea == sizeb); in test_is_equal()
26 REPORTER_ASSERT(reporter, !memcmp(mema, memb, sizea)); in test_is_equal()
31 REPORTER_ASSERT(reporter, table->isEmpty()); in test_datatable_is_empty()
32 REPORTER_ASSERT(reporter, 0 == table->count()); in test_datatable_is_empty()
55 REPORTER_ASSERT(reporter, itable->count() == icount); in test_simpletable()
58 REPORTER_ASSERT(reporter, sizeof(int) == itable->atSize(i)); in test_simpletable()
59 REPORTER_ASSERT(reporter, *itable->atT<int>(i, &size) == idata[i]); in test_simpletable()
60 REPORTER_ASSERT(reporter, sizeof(int) == size); in test_simpletable()
76 REPORTER_ASSERT(reporter, table->count() == count); in test_vartable()
[all …]
DReader32Test.cpp12 REPORTER_ASSERT(reporter, reader.eof()); in assert_eof()
13 REPORTER_ASSERT(reporter, reader.size() == reader.offset()); in assert_eof()
14 REPORTER_ASSERT(reporter, (const char*)reader.peek() == in assert_eof()
19 REPORTER_ASSERT(reporter, 0 == reader.offset()); in assert_start()
20 REPORTER_ASSERT(reporter, reader.size() == reader.available()); in assert_start()
21 REPORTER_ASSERT(reporter, reader.isAvailable(reader.size())); in assert_start()
22 REPORTER_ASSERT(reporter, !reader.isAvailable(reader.size() + 1)); in assert_start()
23 REPORTER_ASSERT(reporter, reader.peek() == reader.base()); in assert_start()
27 REPORTER_ASSERT(reporter, 0 == reader.size()); in assert_empty()
28 REPORTER_ASSERT(reporter, 0 == reader.offset()); in assert_empty()
[all …]
DMatrix44Test.cpp35 REPORTER_ASSERT(reporter, data[0] == m0); in assert16()
36 REPORTER_ASSERT(reporter, data[1] == m1); in assert16()
37 REPORTER_ASSERT(reporter, data[2] == m2); in assert16()
38 REPORTER_ASSERT(reporter, data[3] == m3); in assert16()
40 REPORTER_ASSERT(reporter, data[4] == m4); in assert16()
41 REPORTER_ASSERT(reporter, data[5] == m5); in assert16()
42 REPORTER_ASSERT(reporter, data[6] == m6); in assert16()
43 REPORTER_ASSERT(reporter, data[7] == m7); in assert16()
45 REPORTER_ASSERT(reporter, data[8] == m8); in assert16()
46 REPORTER_ASSERT(reporter, data[9] == m9); in assert16()
[all …]
DTemplatesTest.cpp17 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
23 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
27 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
31 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
43 REPORTER_ASSERT(reporter, array[i] == 10 - i); in test_automalloc_realloc()
47 REPORTER_ASSERT(reporter, array[i] == 10 - i); in test_automalloc_realloc()
51 REPORTER_ASSERT(reporter, array[0] = 10); in test_automalloc_realloc()
59 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
65 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
67 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
[all …]
DBitSetTest.cpp13 REPORTER_ASSERT(reporter, set0.has(0) == false); in DEF_TEST()
14 REPORTER_ASSERT(reporter, set0.has(32767) == false); in DEF_TEST()
15 REPORTER_ASSERT(reporter, set0.has(65535) == false); in DEF_TEST()
18 REPORTER_ASSERT(reporter, set0.has(22) == true); in DEF_TEST()
20 REPORTER_ASSERT(reporter, set0.has(24) == true); in DEF_TEST()
22 REPORTER_ASSERT(reporter, set0.has(35) == true); in DEF_TEST()
23 REPORTER_ASSERT(reporter, set0.has(24) == true); in DEF_TEST()
24 REPORTER_ASSERT(reporter, set0.has(35) == true); in DEF_TEST()
28 REPORTER_ASSERT(reporter, data.count() == 3); in DEF_TEST()
29 REPORTER_ASSERT(reporter, data[0] == 22); in DEF_TEST()
[all …]
DPathTest.cpp38 REPORTER_ASSERT(reporter, bounds == rrect.rect()); in test_add_rrect()
43 REPORTER_ASSERT(reporter, bounds == path.getBounds()); in test_add_rrect()
51 REPORTER_ASSERT(reporter, !path.isConvex()); in test_skbug_3469()
337 REPORTER_ASSERT(reporter, 50 == last.fX); in test_path_close_issue1474()
338 REPORTER_ASSERT(reporter, 50 == last.fY); in test_path_close_issue1474()
348 REPORTER_ASSERT(reporter, 75 == last.fX); in test_path_close_issue1474()
349 REPORTER_ASSERT(reporter, 75 == last.fY); in test_path_close_issue1474()
359 REPORTER_ASSERT(reporter, 85 == last.fX); in test_path_close_issue1474()
360 REPORTER_ASSERT(reporter, 85 == last.fY); in test_path_close_issue1474()
370 REPORTER_ASSERT(reporter, 95 == last.fX); in test_path_close_issue1474()
[all …]

12345678910