| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/files/file_util.h" | 5 #include "base/files/file_util.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "base/test/test_discardable_memory_allocator.h" |
| 7 #include "third_party/skia/include/core/SkCanvas.h" | 8 #include "third_party/skia/include/core/SkCanvas.h" |
| 8 #include "third_party/skia/include/core/SkFlattenableSerialization.h" | 9 #include "third_party/skia/include/core/SkFlattenableSerialization.h" |
| 9 #include "third_party/skia/include/core/SkImageFilter.h" | 10 #include "third_party/skia/include/core/SkImageFilter.h" |
| 10 | 11 |
| 11 namespace { | 12 namespace { |
| 12 | 13 |
| 13 static const int BitmapSize = 24; | 14 static const int BitmapSize = 24; |
| 14 | 15 |
| 15 bool ReadTestCase(const char* filename, std::string* ipc_filter_message) { | 16 bool ReadTestCase(const char* filename, std::string* ipc_filter_message) { |
| 16 base::FilePath filepath = base::FilePath::FromUTF8Unsafe(filename); | 17 base::FilePath filepath = base::FilePath::FromUTF8Unsafe(filename); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 RunTestCase(ipc_filter_message, bitmap, canvas); | 66 RunTestCase(ipc_filter_message, bitmap, canvas); |
| 66 | 67 |
| 67 return true; | 68 return true; |
| 68 } | 69 } |
| 69 | 70 |
| 70 } | 71 } |
| 71 | 72 |
| 72 int main(int argc, char** argv) { | 73 int main(int argc, char** argv) { |
| 73 int ret = 0; | 74 int ret = 0; |
| 74 | 75 |
| 76 base::TestDiscardableMemoryAllocator discardable_memory_allocator; |
| 77 base::DiscardableMemoryAllocator::SetInstance(&discardable_memory_allocator); |
| 78 |
| 75 SkBitmap bitmap; | 79 SkBitmap bitmap; |
| 76 bitmap.allocN32Pixels(BitmapSize, BitmapSize); | 80 bitmap.allocN32Pixels(BitmapSize, BitmapSize); |
| 77 SkCanvas canvas(bitmap); | 81 SkCanvas canvas(bitmap); |
| 78 canvas.clear(0x00000000); | 82 canvas.clear(0x00000000); |
| 79 | 83 |
| 80 for (int i = 1; i < argc; i++) | 84 for (int i = 1; i < argc; i++) |
| 81 if (!ReadAndRunTestCase(argv[i], bitmap, &canvas)) | 85 if (!ReadAndRunTestCase(argv[i], bitmap, &canvas)) |
| 82 ret = 2; | 86 ret = 2; |
| 83 | 87 |
| 84 // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish | 88 // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish |
| 85 // successful runs from crashes. | 89 // successful runs from crashes. |
| 86 printf("#EOF\n"); | 90 printf("#EOF\n"); |
| 87 | 91 |
| 88 return ret; | 92 return ret; |
| 89 } | 93 } |
| 90 | 94 |
| OLD | NEW |