File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2999,10 +2999,12 @@ one is included in the list below.
2999
2999
* ` --snapshot-blob `
3000
3000
* ` --test-coverage-exclude `
3001
3001
* ` --test-coverage-include `
3002
+ * ` --test-name-pattern `
3002
3003
* ` --test-only `
3003
3004
* ` --test-reporter-destination `
3004
3005
* ` --test-reporter `
3005
3006
* ` --test-shard `
3007
+ * ` --test-skip-pattern `
3006
3008
* ` --throw-deprecation `
3007
3009
* ` --title `
3008
3010
* ` --tls-cipher-list `
Original file line number Diff line number Diff line change @@ -658,7 +658,8 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
658
658
&EnvironmentOptions::test_runner_snapshots);
659
659
AddOption (" --test-name-pattern" ,
660
660
" run tests whose name matches this regular expression" ,
661
- &EnvironmentOptions::test_name_pattern);
661
+ &EnvironmentOptions::test_name_pattern,
662
+ kAllowedInEnvvar );
662
663
AddOption (" --test-reporter" ,
663
664
" report test output using the given reporter" ,
664
665
&EnvironmentOptions::test_reporter,
@@ -677,7 +678,8 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
677
678
kAllowedInEnvvar );
678
679
AddOption (" --test-skip-pattern" ,
679
680
" run tests whose name do not match this regular expression" ,
680
- &EnvironmentOptions::test_skip_pattern);
681
+ &EnvironmentOptions::test_skip_pattern,
682
+ kAllowedInEnvvar );
681
683
AddOption (" --test-coverage-include" ,
682
684
" include files in coverage report that match this glob pattern" ,
683
685
&EnvironmentOptions::coverage_include_pattern,
You can’t perform that action at this time.
0 commit comments