Chromium Code Reviews| Index: base/command_line_unittest.cc |
| diff --git a/base/command_line_unittest.cc b/base/command_line_unittest.cc |
| index 018d83f1add248ca85f8825a6789cb477fb7b1b1..ac8a39567c31d3e39fad2c5a7e5ef6533d02c401 100644 |
| --- a/base/command_line_unittest.cc |
| +++ b/base/command_line_unittest.cc |
| @@ -378,6 +378,9 @@ TEST(CommandLineTest, ProgramQuotes) { |
| // Calling Init multiple times should not modify the previous CommandLine. |
| TEST(CommandLineTest, Init) { |
| + // Call Init without checking output once so we know it's been called |
| + // whether or not the test runner does so. |
|
Daniel Erat
2015/08/10 21:51:17
just for brett's benefit since we discussed this o
|
| + CommandLine::Init(0, NULL); |
| CommandLine* initial = CommandLine::ForCurrentProcess(); |
| EXPECT_FALSE(CommandLine::Init(0, NULL)); |
| CommandLine* current = CommandLine::ForCurrentProcess(); |