OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Test.h" | 8 #include "Test.h" |
9 #include "TestClassDef.h" | |
10 #include "SkFrontBufferedStream.h" | 9 #include "SkFrontBufferedStream.h" |
11 #include "SkRefCnt.h" | 10 #include "SkRefCnt.h" |
12 #include "SkStream.h" | 11 #include "SkStream.h" |
13 #include "SkTypes.h" | 12 #include "SkTypes.h" |
14 | 13 |
15 static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream, | 14 static void test_read(skiatest::Reporter* reporter, SkStream* bufferedStream, |
16 const void* expectations, size_t bytesToRead) { | 15 const void* expectations, size_t bytesToRead) { |
17 // output for reading bufferedStream. | 16 // output for reading bufferedStream. |
18 SkAutoMalloc storage(bytesToRead); | 17 SkAutoMalloc storage(bytesToRead); |
19 | 18 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 test_skipping(reporter, bufferSize); | 149 test_skipping(reporter, bufferSize); |
151 test_read_beyond_buffer(reporter, bufferSize); | 150 test_read_beyond_buffer(reporter, bufferSize); |
152 } | 151 } |
153 | 152 |
154 DEF_TEST(FrontBufferedStream, reporter) { | 153 DEF_TEST(FrontBufferedStream, reporter) { |
155 // Test 6 and 64, which are used by Android, as well as another arbitrary le
ngth. | 154 // Test 6 and 64, which are used by Android, as well as another arbitrary le
ngth. |
156 test_buffers(reporter, 6); | 155 test_buffers(reporter, 6); |
157 test_buffers(reporter, 15); | 156 test_buffers(reporter, 15); |
158 test_buffers(reporter, 64); | 157 test_buffers(reporter, 64); |
159 } | 158 } |
OLD | NEW |