| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stdint.h> | 5 #include <stdint.h> |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <sstream> | 10 #include <sstream> |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 for (int i = 1; i < argc; i++) | 211 for (int i = 1; i < argc; i++) |
| 212 if (!ReadAndRunTestCase(argv[i])) | 212 if (!ReadAndRunTestCase(argv[i])) |
| 213 ret = 2; | 213 ret = 2; |
| 214 | 214 |
| 215 // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish | 215 // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish |
| 216 // successful runs from crashes. | 216 // successful runs from crashes. |
| 217 printf("#EOF\n"); | 217 printf("#EOF\n"); |
| 218 | 218 |
| 219 return ret; | 219 return ret; |
| 220 } | 220 } |
| 221 | |
| OLD | NEW |