Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: test/inspector/inspector-test.cc

Issue 2777413005: [inspector] correctly test more variants. (Closed)
Patch Set: [inspector] correctly test more variants. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/inspector/inspector.status ('k') | test/inspector/testcfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/inspector-test.cc
diff --git a/test/inspector/inspector-test.cc b/test/inspector/inspector-test.cc
index 817f3d6418185755dffca1a81d217736a4d73528..e903fd5184f85c2f67ea8ead236b94abb664f19d 100644
--- a/test/inspector/inspector-test.cc
+++ b/test/inspector/inspector-test.cc
@@ -669,7 +669,8 @@ int main(int argc, char* argv[]) {
task_runners.push_back(&backend_runner);
for (int i = 1; i < argc; ++i) {
- if (argv[i][0] == '-') break;
+ // Ignore unknown flags.
+ if (argv[i][0] == '-') continue;
bool exists = false;
v8::internal::Vector<const char> chars =
« no previous file with comments | « test/inspector/inspector.status ('k') | test/inspector/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698