Home
last modified time | relevance | path

Searched refs:regex (Results 1 – 10 of 10) sorted by relevance

/thrift-3.4.0/test/crossrunner/
Dcollect.py150 def _filter_entries(tests, regex): argument
151 if regex:
152 return filter(lambda t: re.search(regex, TestEntry.get_name(**t)), tests)
156 def collect_cross_tests(tests_dict, server_match, client_match, regex): argument
158 return list(_filter_entries(_do_collect_tests(sv, cl), regex))
161 def collect_feature_tests(tests_dict, features_dict, server_match, feature_match, regex): argument
164 return list(_filter_entries(_do_collect_tests(sv, ft), regex))
/thrift-3.4.0/test/
Dtest.py55 …ts(server_match, client_match, jobs, skip_known_failures, only_known_failures, retry_count, regex): argument
60 tests = crossrunner.collect_cross_tests(j, server_match, client_match, regex)
88 …s(server_match, feature_match, jobs, skip_known_failures, only_known_failures, retry_count, regex): argument
96 tests = crossrunner.collect_feature_tests(j, j2, server_match, feature_match, regex)
183 options.retry_count, options.regex)
187 options.retry_count, options.regex)
DREADME.md34 Another useful flag is --regex. For example, to run all tests that involve
37 test/test.py --regex "java.*binary"
/thrift-3.4.0/
DMakefile.am99 …ilures --server $(CROSS_LANGS_COMMA_SEPARATED) --client $(CROSS_LANGS_COMMA_SEPARATED) --regex "$*"
DCHANGES.md2093 - [THRIFT-3611](https://issues.apache.org/jira/browse/THRIFT-3611) - Add --regex filter to cross te…
/thrift-3.4.0/build/appveyor/
DCYGWIN-appveyor-full.bat94 SET DISABLED_TESTS_COMMAND=--exclude-regex '%DISABLED_TESTS%'
DMSYS-appveyor-full.bat96 SET DISABLED_TESTS_COMMAND=--exclude-regex '%DISABLED_TESTS%'
DMINGW-appveyor-full.bat124 SET DISABLED_TESTS_COMMAND=--exclude-regex '%DISABLED_TESTS%'
DMSVC-appveyor-full.bat194 SET DISABLED_TESTS_COMMAND=--exclude-regex '%DISABLED_TESTS%'
/thrift-3.4.0/lib/haxe/src/org/apache/thrift/protocol/
DTJSONProtocol.hx594 // not do a complete regex check to validate that this is actually a number.