Chromium Code Reviews| 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 84 test_stream_filename = it->second.c_str(); | 84 test_stream_filename = it->second.c_str(); |
| 85 } else if (it->first == "num_nalus") { | 85 } else if (it->first == "num_nalus") { |
| 86 CHECK(base::StringToInt(it->second, &num_nalus)); | 86 CHECK(base::StringToInt(it->second, &num_nalus)); |
| 87 } else { | 87 } else { |
| 88 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; | 88 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; |
| 89 } | 89 } |
| 90 } | 90 } |
| 91 | 91 |
| 92 return RUN_ALL_TESTS(); | 92 return RUN_ALL_TESTS(); |
| 93 } | 93 } |
| 94 | |
|
acolwell GONE FROM CHROMIUM
2012/07/03 01:00:12
nit: remove unnecessary change.
| |
| OLD | NEW |