/external/chromium_org/third_party/skia/forth/ |
D | ForthTests.cpp | 22 #define FORTH_ASSERT(reporter, expression) \ argument 25 reporter->reportFailure(#expression, __FILE__, __LINE__); \ 29 static void drop_test0(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in drop_test0() argument 32 FORTH_ASSERT(reporter, 0 == fe->depth()); in drop_test0() 35 static void drop_test1(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in drop_test1() argument 39 FORTH_ASSERT(reporter, 1 == fe->depth()); in drop_test1() 40 FORTH_ASSERT(reporter, -17 == fe->peek(0)); in drop_test1() 43 static void dup_test(ForthWord* word, ForthEngine* fe, Reporter* reporter) { in dup_test() argument 46 FORTH_ASSERT(reporter, 2 == fe->depth()); in dup_test() 47 FORTH_ASSERT(reporter, -17 == fe->peek(0)); in dup_test() [all …]
|
/external/chromium_org/third_party/skia/tests/ |
D | TSetTest.cpp | 14 static void TestTSet_basic(skiatest::Reporter* reporter) { in TestTSet_basic() argument 16 REPORTER_ASSERT(reporter, set0.isEmpty()); in TestTSet_basic() 17 REPORTER_ASSERT(reporter, !set0.contains(-1)); in TestTSet_basic() 18 REPORTER_ASSERT(reporter, !set0.contains(0)); in TestTSet_basic() 19 REPORTER_ASSERT(reporter, !set0.contains(1)); in TestTSet_basic() 20 REPORTER_ASSERT(reporter, set0.count() == 0); in TestTSet_basic() 22 REPORTER_ASSERT(reporter, set0.add(0)); in TestTSet_basic() 23 REPORTER_ASSERT(reporter, !set0.isEmpty()); in TestTSet_basic() 24 REPORTER_ASSERT(reporter, !set0.contains(-1)); in TestTSet_basic() 25 REPORTER_ASSERT(reporter, set0.contains(0)); in TestTSet_basic() [all …]
|
D | UtilsTest.cpp | 28 static void test_autounref(skiatest::Reporter* reporter) { in test_autounref() argument 30 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() 33 REPORTER_ASSERT(reporter, &obj == tmp.get()); in test_autounref() 34 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() 36 REPORTER_ASSERT(reporter, &obj == tmp.detach()); in test_autounref() 37 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() 38 REPORTER_ASSERT(reporter, NULL == tmp.detach()); in test_autounref() 39 REPORTER_ASSERT(reporter, NULL == tmp.get()); in test_autounref() 42 REPORTER_ASSERT(reporter, 2 == obj.getRefCnt()); in test_autounref() 46 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() [all …]
|
D | DequeTest.cpp | 11 static void assert_count(skiatest::Reporter* reporter, const SkDeque& deq, int count) { in assert_count() argument 13 REPORTER_ASSERT(reporter, deq.empty()); in assert_count() 14 REPORTER_ASSERT(reporter, 0 == deq.count()); in assert_count() 15 REPORTER_ASSERT(reporter, sizeof(int) == deq.elemSize()); in assert_count() 16 REPORTER_ASSERT(reporter, NULL == deq.front()); in assert_count() 17 REPORTER_ASSERT(reporter, NULL == deq.back()); in assert_count() 19 REPORTER_ASSERT(reporter, !deq.empty()); in assert_count() 20 REPORTER_ASSERT(reporter, count == deq.count()); in assert_count() 21 REPORTER_ASSERT(reporter, sizeof(int) == deq.elemSize()); in assert_count() 22 REPORTER_ASSERT(reporter, deq.front()); in assert_count() [all …]
|
D | Reader32Test.cpp | 11 static void assert_eof(skiatest::Reporter* reporter, const SkReader32& reader) { in assert_eof() argument 12 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() 18 static void assert_start(skiatest::Reporter* reporter, const SkReader32& reader) { in assert_start() argument 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() [all …]
|
D | BitSetTest.cpp | 11 DEF_TEST(BitSet, reporter) { in DEF_TEST() argument 13 REPORTER_ASSERT(reporter, set0.isBitSet(0) == false); in DEF_TEST() 14 REPORTER_ASSERT(reporter, set0.isBitSet(32767) == false); in DEF_TEST() 15 REPORTER_ASSERT(reporter, set0.isBitSet(65535) == false); in DEF_TEST() 18 REPORTER_ASSERT(reporter, set0 == set1); in DEF_TEST() 21 REPORTER_ASSERT(reporter, set0.isBitSet(22) == true); in DEF_TEST() 23 REPORTER_ASSERT(reporter, set0.isBitSet(24) == true); in DEF_TEST() 25 REPORTER_ASSERT(reporter, set0.isBitSet(35) == true); in DEF_TEST() 27 REPORTER_ASSERT(reporter, set0.isBitSet(22) == false); in DEF_TEST() 28 REPORTER_ASSERT(reporter, set0.isBitSet(24) == true); in DEF_TEST() [all …]
|
D | MetaDataTest.cpp | 11 static void test_ptrs(skiatest::Reporter* reporter) { in test_ptrs() argument 13 REPORTER_ASSERT(reporter, 1 == ref.getRefCnt()); in test_ptrs() 20 REPORTER_ASSERT(reporter, md0.findRefCnt(name)); in test_ptrs() 21 REPORTER_ASSERT(reporter, md0.hasRefCnt(name, &ref)); in test_ptrs() 22 REPORTER_ASSERT(reporter, 2 == ref.getRefCnt()); in test_ptrs() 25 REPORTER_ASSERT(reporter, md1.findRefCnt(name)); in test_ptrs() 26 REPORTER_ASSERT(reporter, md1.hasRefCnt(name, &ref)); in test_ptrs() 27 REPORTER_ASSERT(reporter, 3 == ref.getRefCnt()); in test_ptrs() 29 REPORTER_ASSERT(reporter, md0.removeRefCnt(name)); in test_ptrs() 30 REPORTER_ASSERT(reporter, !md0.findRefCnt(name)); in test_ptrs() [all …]
|
D | Writer32Test.cpp | 13 static void check_contents(skiatest::Reporter* reporter, const SkWriter32& writer, in check_contents() argument 16 REPORTER_ASSERT(reporter, writer.bytesWritten() == size); in check_contents() 18 REPORTER_ASSERT(reporter, !memcmp(storage.get(), expected, size)); in check_contents() 22 static void test_reserve(skiatest::Reporter* reporter) { in test_reserve() argument 30 static void test_string_null(skiatest::Reporter* reporter) { in test_string_null() argument 37 check_contents(reporter, writer, expected, sizeof(expected)); in test_string_null() 40 static void test_rewind(skiatest::Reporter* reporter) { in test_rewind() argument 44 REPORTER_ASSERT(reporter, 0 == writer.bytesWritten()); in test_rewind() 48 check_contents(reporter, writer, array, sizeof(array)); in test_rewind() 51 REPORTER_ASSERT(reporter, sizeof(array) - 4 == writer.bytesWritten()); in test_rewind() [all …]
|
D | PathTest.cpp | 71 static void make_path_crbugskia2820(SkPath* path, skiatest::Reporter* reporter) { in make_path_crbugskia2820() argument 84 static void test_path_crbugskia2820(skiatest::Reporter* reporter) {//GrContext* context) { in test_path_crbugskia2820() argument 86 make_path_crbugskia2820(&path, reporter); in test_path_crbugskia2820() 117 static void test_path_to_region(skiatest::Reporter* reporter) { in test_path_to_region() argument 143 static void test_path_close_issue1474(skiatest::Reporter* reporter) { in test_path_close_issue1474() argument 156 REPORTER_ASSERT(reporter, 50 == last.fX); in test_path_close_issue1474() 157 REPORTER_ASSERT(reporter, 50 == last.fY); in test_path_close_issue1474() 167 REPORTER_ASSERT(reporter, 75 == last.fX); in test_path_close_issue1474() 168 REPORTER_ASSERT(reporter, 75 == last.fY); in test_path_close_issue1474() 178 REPORTER_ASSERT(reporter, 85 == last.fX); in test_path_close_issue1474() [all …]
|
D | FrontBufferedStreamTest.cpp | 14 static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream, in test_read() argument 20 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd()); in test_read() 21 REPORTER_ASSERT(reporter, memcmp(storage.get(), expectations, bytesRead) == 0); in test_read() 24 static void test_rewind(skiatest::Reporter* reporter, in test_rewind() argument 27 REPORTER_ASSERT(reporter, success == shouldSucceed); in test_rewind() 34 static void test_hasLength(skiatest::Reporter* reporter, in test_hasLength() argument 38 REPORTER_ASSERT(reporter, bufferedStream.hasLength()); in test_hasLength() 40 REPORTER_ASSERT(reporter, !bufferedStream.hasLength()); in test_hasLength() 51 static void test_incremental_buffering(skiatest::Reporter* reporter, size_t bufferSize) { in test_incremental_buffering() argument 55 test_hasLength(reporter, *bufferedStream.get(), memStream); in test_incremental_buffering() [all …]
|
D | DataRefTest.cpp | 16 static void test_is_equal(skiatest::Reporter* reporter, in test_is_equal() argument 18 REPORTER_ASSERT(reporter, a->count() == b->count()); in test_is_equal() 23 REPORTER_ASSERT(reporter, sizea == sizeb); in test_is_equal() 24 REPORTER_ASSERT(reporter, !memcmp(mema, memb, sizea)); in test_is_equal() 28 static void test_datatable_is_empty(skiatest::Reporter* reporter, in test_datatable_is_empty() argument 30 REPORTER_ASSERT(reporter, table->isEmpty()); in test_datatable_is_empty() 31 REPORTER_ASSERT(reporter, 0 == table->count()); in test_datatable_is_empty() 34 static void test_emptytable(skiatest::Reporter* reporter) { in test_emptytable() argument 41 test_datatable_is_empty(reporter, table0); in test_emptytable() 42 test_datatable_is_empty(reporter, table1); in test_emptytable() [all …]
|
D | RoundRectTest.cpp | 15 static void test_inset(skiatest::Reporter* reporter) { in test_inset() argument 21 REPORTER_ASSERT(reporter, rr2.isRect()); in test_inset() 24 REPORTER_ASSERT(reporter, rr2.isRect()); in test_inset() 27 REPORTER_ASSERT(reporter, rr2.isEmpty()); in test_inset() 31 REPORTER_ASSERT(reporter, rr2.isSimple()); in test_inset() 33 REPORTER_ASSERT(reporter, rr2.isRect()); in test_inset() 37 static void test_round_rect_basic(skiatest::Reporter* reporter) { in test_round_rect_basic() argument 44 REPORTER_ASSERT(reporter, SkRRect::kEmpty_Type == empty.type()); in test_round_rect_basic() 45 REPORTER_ASSERT(reporter, empty.rect().isEmpty()); in test_round_rect_basic() 48 REPORTER_ASSERT(reporter, zeroPt == empty.radii((SkRRect::Corner) i)); in test_round_rect_basic() [all …]
|
D | MatrixTest.cpp | 29 static bool are_equal(skiatest::Reporter* reporter, in are_equal() argument 45 REPORTER_ASSERT(reporter, aVal == bVal && aValI == aValI); 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() 74 static void test_matrix_recttorect(skiatest::Reporter* reporter) { in test_matrix_recttorect() argument 81 REPORTER_ASSERT(reporter, SkMatrix::kIdentity_Mask == matrix.getType()); in test_matrix_recttorect() 82 REPORTER_ASSERT(reporter, matrix.rectStaysRect()); in test_matrix_recttorect() 86 REPORTER_ASSERT(reporter, SkMatrix::kTranslate_Mask == matrix.getType()); in test_matrix_recttorect() 87 REPORTER_ASSERT(reporter, matrix.rectStaysRect()); in test_matrix_recttorect() [all …]
|
D | StringTest.cpp | 35 DEF_TEST(String, reporter) { in DEF_TEST() argument 41 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() [all …]
|
/external/skia/tests/ |
D | TSetTest.cpp | 14 static void TestTSet_basic(skiatest::Reporter* reporter) { in TestTSet_basic() argument 16 REPORTER_ASSERT(reporter, set0.isEmpty()); in TestTSet_basic() 17 REPORTER_ASSERT(reporter, !set0.contains(-1)); in TestTSet_basic() 18 REPORTER_ASSERT(reporter, !set0.contains(0)); in TestTSet_basic() 19 REPORTER_ASSERT(reporter, !set0.contains(1)); in TestTSet_basic() 20 REPORTER_ASSERT(reporter, set0.count() == 0); in TestTSet_basic() 22 REPORTER_ASSERT(reporter, set0.add(0)); in TestTSet_basic() 23 REPORTER_ASSERT(reporter, !set0.isEmpty()); in TestTSet_basic() 24 REPORTER_ASSERT(reporter, !set0.contains(-1)); in TestTSet_basic() 25 REPORTER_ASSERT(reporter, set0.contains(0)); in TestTSet_basic() [all …]
|
D | UtilsTest.cpp | 28 static void test_autounref(skiatest::Reporter* reporter) { in test_autounref() argument 30 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() 33 REPORTER_ASSERT(reporter, &obj == tmp.get()); in test_autounref() 34 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() 36 REPORTER_ASSERT(reporter, &obj == tmp.detach()); in test_autounref() 37 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() 38 REPORTER_ASSERT(reporter, NULL == tmp.detach()); in test_autounref() 39 REPORTER_ASSERT(reporter, NULL == tmp.get()); in test_autounref() 42 REPORTER_ASSERT(reporter, 2 == obj.getRefCnt()); in test_autounref() 46 REPORTER_ASSERT(reporter, 1 == obj.getRefCnt()); in test_autounref() [all …]
|
D | DequeTest.cpp | 11 static void assert_count(skiatest::Reporter* reporter, const SkDeque& deq, int count) { in assert_count() argument 13 REPORTER_ASSERT(reporter, deq.empty()); in assert_count() 14 REPORTER_ASSERT(reporter, 0 == deq.count()); in assert_count() 15 REPORTER_ASSERT(reporter, sizeof(int) == deq.elemSize()); in assert_count() 16 REPORTER_ASSERT(reporter, NULL == deq.front()); in assert_count() 17 REPORTER_ASSERT(reporter, NULL == deq.back()); in assert_count() 19 REPORTER_ASSERT(reporter, !deq.empty()); in assert_count() 20 REPORTER_ASSERT(reporter, count == deq.count()); in assert_count() 21 REPORTER_ASSERT(reporter, sizeof(int) == deq.elemSize()); in assert_count() 22 REPORTER_ASSERT(reporter, NULL != deq.front()); in assert_count() [all …]
|
D | Reader32Test.cpp | 11 static void assert_eof(skiatest::Reporter* reporter, const SkReader32& reader) { in assert_eof() argument 12 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() 18 static void assert_start(skiatest::Reporter* reporter, const SkReader32& reader) { in assert_start() argument 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() [all …]
|
D | BitSetTest.cpp | 11 DEF_TEST(BitSet, reporter) { in DEF_TEST() argument 13 REPORTER_ASSERT(reporter, set0.isBitSet(0) == false); in DEF_TEST() 14 REPORTER_ASSERT(reporter, set0.isBitSet(32767) == false); in DEF_TEST() 15 REPORTER_ASSERT(reporter, set0.isBitSet(65535) == false); in DEF_TEST() 18 REPORTER_ASSERT(reporter, set0 == set1); in DEF_TEST() 21 REPORTER_ASSERT(reporter, set0.isBitSet(22) == true); in DEF_TEST() 23 REPORTER_ASSERT(reporter, set0.isBitSet(24) == true); in DEF_TEST() 25 REPORTER_ASSERT(reporter, set0.isBitSet(35) == true); in DEF_TEST() 27 REPORTER_ASSERT(reporter, set0.isBitSet(22) == false); in DEF_TEST() 28 REPORTER_ASSERT(reporter, set0.isBitSet(24) == true); in DEF_TEST() [all …]
|
D | RoundRectTest.cpp | 15 static void test_inset(skiatest::Reporter* reporter) { in test_inset() argument 21 REPORTER_ASSERT(reporter, rr2.isRect()); in test_inset() 24 REPORTER_ASSERT(reporter, rr2.isRect()); in test_inset() 27 REPORTER_ASSERT(reporter, rr2.isEmpty()); in test_inset() 31 REPORTER_ASSERT(reporter, rr2.isSimple()); in test_inset() 33 REPORTER_ASSERT(reporter, rr2.isRect()); in test_inset() 37 static void test_round_rect_basic(skiatest::Reporter* reporter) { in test_round_rect_basic() argument 44 REPORTER_ASSERT(reporter, SkRRect::kEmpty_Type == empty.type()); in test_round_rect_basic() 45 REPORTER_ASSERT(reporter, empty.rect().isEmpty()); in test_round_rect_basic() 48 REPORTER_ASSERT(reporter, zeroPt == empty.radii((SkRRect::Corner) i)); in test_round_rect_basic() [all …]
|
D | MetaDataTest.cpp | 11 static void test_ptrs(skiatest::Reporter* reporter) { in test_ptrs() argument 13 REPORTER_ASSERT(reporter, 1 == ref.getRefCnt()); in test_ptrs() 20 REPORTER_ASSERT(reporter, md0.findRefCnt(name)); in test_ptrs() 21 REPORTER_ASSERT(reporter, md0.hasRefCnt(name, &ref)); in test_ptrs() 22 REPORTER_ASSERT(reporter, 2 == ref.getRefCnt()); in test_ptrs() 25 REPORTER_ASSERT(reporter, md1.findRefCnt(name)); in test_ptrs() 26 REPORTER_ASSERT(reporter, md1.hasRefCnt(name, &ref)); in test_ptrs() 27 REPORTER_ASSERT(reporter, 3 == ref.getRefCnt()); in test_ptrs() 29 REPORTER_ASSERT(reporter, md0.removeRefCnt(name)); in test_ptrs() 30 REPORTER_ASSERT(reporter, !md0.findRefCnt(name)); in test_ptrs() [all …]
|
D | Writer32Test.cpp | 13 static void check_contents(skiatest::Reporter* reporter, const SkWriter32& writer, in check_contents() argument 16 REPORTER_ASSERT(reporter, writer.bytesWritten() == size); in check_contents() 18 REPORTER_ASSERT(reporter, !memcmp(storage.get(), expected, size)); in check_contents() 22 static void test_reserve(skiatest::Reporter* reporter) { in test_reserve() argument 30 static void test_string_null(skiatest::Reporter* reporter) { in test_string_null() argument 37 check_contents(reporter, writer, expected, sizeof(expected)); in test_string_null() 40 static void test_rewind(skiatest::Reporter* reporter) { in test_rewind() argument 44 REPORTER_ASSERT(reporter, 0 == writer.bytesWritten()); in test_rewind() 48 check_contents(reporter, writer, array, sizeof(array)); in test_rewind() 51 REPORTER_ASSERT(reporter, sizeof(array) - 4 == writer.bytesWritten()); in test_rewind() [all …]
|
D | FrontBufferedStreamTest.cpp | 14 static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream, in test_read() argument 20 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd()); in test_read() 21 REPORTER_ASSERT(reporter, memcmp(storage.get(), expectations, bytesRead) == 0); in test_read() 24 static void test_rewind(skiatest::Reporter* reporter, in test_rewind() argument 27 REPORTER_ASSERT(reporter, success == shouldSucceed); in test_rewind() 34 static void test_hasLength(skiatest::Reporter* reporter, in test_hasLength() argument 38 REPORTER_ASSERT(reporter, bufferedStream.hasLength()); in test_hasLength() 40 REPORTER_ASSERT(reporter, !bufferedStream.hasLength()); in test_hasLength() 51 static void test_incremental_buffering(skiatest::Reporter* reporter, size_t bufferSize) { in test_incremental_buffering() argument 55 test_hasLength(reporter, *bufferedStream.get(), memStream); in test_incremental_buffering() [all …]
|
D | DataRefTest.cpp | 16 static void test_is_equal(skiatest::Reporter* reporter, in test_is_equal() argument 18 REPORTER_ASSERT(reporter, a->count() == b->count()); in test_is_equal() 23 REPORTER_ASSERT(reporter, sizea == sizeb); in test_is_equal() 24 REPORTER_ASSERT(reporter, !memcmp(mema, memb, sizea)); in test_is_equal() 28 static void test_datatable_is_empty(skiatest::Reporter* reporter, in test_datatable_is_empty() argument 30 REPORTER_ASSERT(reporter, table->isEmpty()); in test_datatable_is_empty() 31 REPORTER_ASSERT(reporter, 0 == table->count()); in test_datatable_is_empty() 34 static void test_emptytable(skiatest::Reporter* reporter) { in test_emptytable() argument 41 test_datatable_is_empty(reporter, table0); in test_emptytable() 42 test_datatable_is_empty(reporter, table1); in test_emptytable() [all …]
|
D | PathTest.cpp | 90 static void test_path_to_region(skiatest::Reporter* reporter) { in test_path_to_region() argument 116 static void test_path_close_issue1474(skiatest::Reporter* reporter) { in test_path_close_issue1474() argument 129 REPORTER_ASSERT(reporter, 50 == last.fX); in test_path_close_issue1474() 130 REPORTER_ASSERT(reporter, 50 == last.fY); in test_path_close_issue1474() 140 REPORTER_ASSERT(reporter, 75 == last.fX); in test_path_close_issue1474() 141 REPORTER_ASSERT(reporter, 75 == last.fY); in test_path_close_issue1474() 151 REPORTER_ASSERT(reporter, 85 == last.fX); in test_path_close_issue1474() 152 REPORTER_ASSERT(reporter, 85 == last.fY); in test_path_close_issue1474() 162 REPORTER_ASSERT(reporter, 95 == last.fX); in test_path_close_issue1474() 163 REPORTER_ASSERT(reporter, 95 == last.fY); in test_path_close_issue1474() [all …]
|