/external/chromium_org/build/android/pylib/instrumentation/ |
test_options.py | 15 'test_filter',
|
setup.py | 32 test_options.test_filter)
|
test_jar.py | 186 exclude_annotation_list, test_filter): 195 test_filter: Filter used for partial matching on the test method names. 217 if test_filter: 227 sanitized_test_names.keys(), test_filter.replace('#', '.'))]
|
/external/chromium_org/build/android/pylib/perf/ |
test_options.py | 15 'test_filter',
|
setup.py | 83 if test_options.test_filter: 85 test_options.test_filter)
|
/external/chromium_org/build/android/pylib/uiautomator/ |
test_options.py | 15 'test_filter',
|
setup.py | 26 test_options.test_filter)
|
test_runner.py | 32 test_options.test_filter,
|
/external/chromium_org/build/android/pylib/linker/ |
setup.py | 33 if options.test_filter: 36 options.test_filter)
|
/external/chromium_org/build/android/pylib/gtest/ |
test_package.py | 27 def CreateCommandLineFileOnDevice(self, device, test_filter, test_arguments): 32 test_filter: A test_filter flag.
|
test_package_apk.py | 98 def CreateCommandLineFileOnDevice(self, device, test_filter, test_arguments): 100 device, '--gtest_filter=%s %s' % (test_filter, test_arguments))
|
test_package_exe.py | 83 def CreateCommandLineFileOnDevice(self, device, test_filter, test_arguments): 96 test_filter, test_arguments,
|
/external/chromium_org/ppapi/tests/ |
test_case.h | 57 virtual void RunTests(const std::string& test_filter) = 0; 228 // The tests that were found in test_filter. The bool indicates whether the 230 // the test_filter string). 239 // listed in the test_filter but didn't match any calls to ShouldRunTest, 245 // in the test_filter, the test name will be added here. This allows 616 #define RUN_TEST(name, test_filter) \ 617 if (ShouldRunTest(#name, test_filter)) { \ 627 #define RUN_TEST_FORCEASYNC(name, test_filter) \ 628 if (ShouldRunTest(#name, test_filter)) { \ 636 #define RUN_TEST_BLOCKING(test_case, name, test_filter) \ [all...] |
test_view.h | 19 virtual void RunTests(const std::string& test_filter);
|
test_ime_input_event.h | 22 virtual void RunTests(const std::string& test_filter);
|
test_input_event.h | 31 virtual void RunTests(const std::string& test_filter);
|
test_case.cc | 51 // Parse |test_filter|, which is a comma-delimited list of (possibly prefixed) 54 void ParseTestFilter(const std::string& test_filter, 58 std::istringstream filter_stream(test_filter);
|
/external/chromium_org/chrome/test/chromedriver/test/ |
run_java_tests.py | 64 def _Run(java_tests_src_dir, test_filter, 71 test_filter: the filter to use when choosing tests to run. Format is same 114 if test_filter: 116 test_filter = test_filter.replace('*', '.*') 117 sys_props += ['filter=' + test_filter] 291 test_filter = options.filter 293 test_filter = '*' 295 if '-' in test_filter: 296 test_filter += ': [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest_shuffle_test.py | 45 TEST_FILTER = 'A*.A:A*.B:C*' 62 def FilterFlag(test_filter): 63 return '--gtest_filter=%s' % (test_filter,) 142 GetTestsForAllIterations({}, [FilterFlag(TEST_FILTER)])[0]) 160 {}, [ShuffleFlag(), RandomSeedFlag(1), FilterFlag(TEST_FILTER)])[0])
|
/external/gtest/test/ |
gtest_shuffle_test.py | 45 TEST_FILTER = 'A*.A:A*.B:C*' 62 def FilterFlag(test_filter): 63 return '--gtest_filter=%s' % (test_filter,) 142 GetTestsForAllIterations({}, [FilterFlag(TEST_FILTER)])[0]) 160 {}, [ShuffleFlag(), RandomSeedFlag(1), FilterFlag(TEST_FILTER)])[0])
|
/external/protobuf/gtest/test/ |
gtest_shuffle_test.py | 45 TEST_FILTER = 'A*.A:A*.B:C*' 62 def FilterFlag(test_filter): 63 return '--gtest_filter=%s' % (test_filter,) 148 GetTestsForAllIterations({}, [FilterFlag(TEST_FILTER)])[0]) 166 {}, [ShuffleFlag(), RandomSeedFlag(1), FilterFlag(TEST_FILTER)])[0])
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_shuffle_test.py | 45 TEST_FILTER = 'A*.A:A*.B:C*' 62 def FilterFlag(test_filter): 63 return '--gtest_filter=%s' % (test_filter,) 142 GetTestsForAllIterations({}, [FilterFlag(TEST_FILTER)])[0]) 160 {}, [ShuffleFlag(), RandomSeedFlag(1), FilterFlag(TEST_FILTER)])[0])
|
/external/chromium_org/build/android/pylib/host_driven/ |
test_case.py | 164 for test_filter in test_filters: 165 tests = test_pkg.GetAllMatchingTests(None, None, test_filter) 169 % test_filter)
|
setup.py | 191 instrumentation_options.test_filter)
|
/external/chromium_org/build/android/ |
test_runner.py | 107 dest='test_filter', 135 option_parser.add_option('-f', '--gtest-filter', dest='test_filter', 164 option_parser.add_option('-f', '--test-filter', dest='test_filter', 199 elif options.test_filter: 286 options.test_filter, 360 options.test_filter, 496 options.print_step, options.no_timeout, options.test_filter, 512 options.test_filter,
|