 Chromium Code Reviews
 Chromium Code Reviews Issue 2189023002:
  [inspector] add test configuration for the parser test.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 2189023002:
  [inspector] add test configuration for the parser test.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| Index: tools/run-tests.py | 
| diff --git a/tools/run-tests.py b/tools/run-tests.py | 
| index 2dfbe385321007b49e3c1255bfa1446062c0ba19..0849bfde7f065e2bf2371230ef161d1a91784e0b 100755 | 
| --- a/tools/run-tests.py | 
| +++ b/tools/run-tests.py | 
| @@ -71,6 +71,7 @@ TEST_MAP = { | 
| "preparser", | 
| "intl", | 
| "unittests", | 
| + "inspector_protocol_parser_test", | 
| 
Michael Achenbach
2016/07/28 13:03:18
Note that these are somewhat sorted slow->fast. Pl
 
Yang
2016/07/28 13:36:44
I think this is the case. Debug mode running both
 | 
| ], | 
| # This needs to stay in sync with test/default.isolate. | 
| "default": [ | 
| @@ -81,6 +82,7 @@ TEST_MAP = { | 
| "preparser", | 
| "intl", | 
| "unittests", | 
| + "inspector_protocol_parser_test", | 
| ], | 
| # This needs to stay in sync with test/ignition.isolate. | 
| "ignition": [ | 
| @@ -98,6 +100,7 @@ TEST_MAP = { | 
| ], | 
| "unittests": [ | 
| "unittests", | 
| + "inspector_protocol_parser_test", | 
| 
Michael Achenbach
2016/07/28 13:03:18
Hmm, if they should be executed when only executin
 | 
| ], | 
| } |