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 // This is a simple application that stress-tests the crash recovery of the disk | 5 // This is a simple application that stress-tests the crash recovery of the disk |
6 // cache. The main application starts a copy of itself on a loop, checking the | 6 // cache. The main application starts a copy of itself on a loop, checking the |
7 // exit code of the child process. When the child dies in an unexpected way, | 7 // exit code of the child process. When the child dies in an unexpected way, |
8 // the main application quits. | 8 // the main application quits. |
9 | 9 |
10 // The child application has two threads: one to exercise the cache in an | 10 // The child application has two threads: one to exercise the cache in an |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 long int iteration = strtol(argv[1], &end, 0); | 284 long int iteration = strtol(argv[1], &end, 0); |
285 | 285 |
286 if (!StartCrashThread()) { | 286 if (!StartCrashThread()) { |
287 printf("failed to start thread\n"); | 287 printf("failed to start thread\n"); |
288 return kError; | 288 return kError; |
289 } | 289 } |
290 | 290 |
291 StressTheCache(iteration); | 291 StressTheCache(iteration); |
292 return 0; | 292 return 0; |
293 } | 293 } |
OLD | NEW |