HomeSort by relevance Sort by last modified time
    Searched refs:test_list (Results 26 - 50 of 92) sorted by null

12 3 4

  /tools/test/connectivity/acts/framework/acts/bin/
act.py 240 test_list = None
242 test_list = config_parser.parse_test_file(args.testfile[0])
244 test_list = args.testclass
249 test_identifiers = config_parser.parse_test_list(test_list)
  /cts/tools/utils/cts/
tools.py 61 for (case_name, test_list) in self.test_cases.iteritems():
65 for test_name in test_list:
127 def IncludeTests(self, package, test_list):
132 test_list A list of tests with methods to be included. e.g.
136 for test in test_list:
145 def ExcludeTests(self, package, test_list):
150 test_list A list of tests with methods to be excluded. e.g.
154 for test in test_list:
  /external/autotest/client/tests/npb/
npb.py 52 test_list = self.tests.split()
54 if len(test_list) == 0:
57 for itest in test_list:
  /external/vixl/tools/
generate_simulator_traces.py 135 status, test_list = util.getstatusoutput(args.runner + ' --list')
151 tests = sorted(filter(lambda t: 'AARCH64_SIM_' in t, test_list.split()))
192 test_list.split()))
  /external/google-breakpad/src/testing/gtest/test/
gtest_output_test.py 247 test_list = GetShellCommandOutput(COMMAND_LIST_TESTS) variable
248 SUPPORTS_DEATH_TESTS = 'DeathTest' in test_list
249 SUPPORTS_TYPED_TESTS = 'TypedTest' in test_list
250 SUPPORTS_THREADS = 'ExpectFailureWithThreadsTest' in test_list
  /external/googletest/googletest/test/
gtest_output_test.py 248 test_list = GetShellCommandOutput(COMMAND_LIST_TESTS) variable
249 SUPPORTS_DEATH_TESTS = 'DeathTest' in test_list
250 SUPPORTS_TYPED_TESTS = 'TypedTest' in test_list
251 SUPPORTS_THREADS = 'ExpectFailureWithThreadsTest' in test_list
  /external/v8/testing/gtest/test/
gtest_output_test.py 248 test_list = GetShellCommandOutput(COMMAND_LIST_TESTS) variable
249 SUPPORTS_DEATH_TESTS = 'DeathTest' in test_list
250 SUPPORTS_TYPED_TESTS = 'TypedTest' in test_list
251 SUPPORTS_THREADS = 'ExpectFailureWithThreadsTest' in test_list
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_output_test.py 247 test_list = GetShellCommandOutput(COMMAND_LIST_TESTS) variable
248 SUPPORTS_DEATH_TESTS = 'DeathTest' in test_list
249 SUPPORTS_TYPED_TESTS = 'TypedTest' in test_list
250 SUPPORTS_THREADS = 'ExpectFailureWithThreadsTest' in test_list
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
elf.exp 112 set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
113 foreach t $test_list {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-size/
size.exp 45 set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
46 foreach t $test_list {
  /external/autotest/server/
site_gtest_runner.py 227 test_list = [x[0] for x in self._test_status.items()
231 test_list = [x for x in test_list if x.find('FAILS_') == -1]
233 test_list = [x for x in test_list if x.find('FLAKY_') == -1]
235 return test_list
  /development/testrunner/test_defs/
native_test.py 102 def _CollectTestSources(self, test_list, dirname, files):
113 test_list: Where new tests should be inserted.
122 test_list.append(str(os.path.join(dirname, f)))
  /external/autotest/client/site_tests/kernel_LTP/
parse_ltp_out.py 160 test_list = filter_accumulator.setdefault(duration, [])
161 test_list.append(previous_tag)
  /external/autotest/client/site_tests/network_ModemManagerSMS/
network_ModemManagerSMS.py 66 smstest.test_list([])
80 smstest.test_list([])
  /external/autotest/client/tests/ltp/
parse_ltp_out.py 166 test_list = filter_accumulator.setdefault(duration, [])
167 test_list.append(previous_tag)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ifunc/
ifunc.exp 418 set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
419 foreach t $test_list {
  /external/google-breakpad/src/testing/test/
gmock-generated-matchers_test.cc 327 list<int> test_list; local
328 test_list.push_back(1);
329 test_list.push_back(3);
330 EXPECT_EQ("", Explain(m, test_list)); // No need to explain anything.
347 list<int> test_list; local
349 EXPECT_EQ("", Explain(m, test_list));
351 test_list.push_back(1);
352 EXPECT_EQ("which has 1 element", Explain(m, test_list));
376 list<string> test_list; local
377 test_list.push_back("test string")
    [all...]
  /external/googletest/googlemock/test/
gmock-generated-matchers_test.cc 325 list<int> test_list; local
326 test_list.push_back(1);
327 test_list.push_back(3);
328 EXPECT_EQ("", Explain(m, test_list)); // No need to explain anything.
345 list<int> test_list; local
347 EXPECT_EQ("", Explain(m, test_list));
349 test_list.push_back(1);
350 EXPECT_EQ("which has 1 element", Explain(m, test_list));
374 list<std::string> test_list; local
375 test_list.push_back("test string")
    [all...]
  /external/v8/testing/gmock/test/
gmock-generated-matchers_test.cc 326 list<int> test_list; local
327 test_list.push_back(1);
328 test_list.push_back(3);
329 EXPECT_EQ("", Explain(m, test_list)); // No need to explain anything.
346 list<int> test_list; local
348 EXPECT_EQ("", Explain(m, test_list));
350 test_list.push_back(1);
351 EXPECT_EQ("which has 1 element", Explain(m, test_list));
375 list<string> test_list; local
376 test_list.push_back("test string")
    [all...]
  /external/autotest/server/cros/
goofy_client.py 352 def monitor_tests(self, test_list):
369 @param test_list: The test list to run.
371 self._set_test_list(test_list)
380 'error in your test_list.')
406 logging.info('Getting results logs for test_list.')
  /test/vts/runners/host/
config_parser.py 111 def parse_test_list(test_list):
115 test_list: A list of test classes/cases.
122 for elem in test_list:
  /tools/test/connectivity/acts/framework/acts/
config_parser.py 151 def parse_test_list(test_list):
155 test_list: A list of test classes/cases.
158 for elem in test_list:
  /external/selinux/python/semanage/
test-semanage.py 63 def test_list(self): member in class:SemanageTests
227 def semanage_custom_suite(test_list):
229 for t in test_list:
  /external/autotest/client/site_tests/network_SIMLocking/
network_SIMLocking.py 413 test_list = [self.test_unsuccessful_enable_lock,
423 for test in test_list:
  /external/protobuf/objectivec/DevTools/
pddm_tests.py 104 test_list = [
118 for idx, (input_str, expected_prefix) in enumerate(test_list, 1):
128 test_list = [
173 for idx, (input_str, expected_prefix) in enumerate(test_list, 1):
205 test_list = [
223 for idx, (input_str, expected) in enumerate(test_list, 1):
250 test_list = [
267 for idx, (input_str, expected_err) in enumerate(test_list, 1):
323 test_list = [
350 for idx, (input_str, line_counts) in enumerate(test_list, 1)
    [all...]

Completed in 1663 milliseconds

12 3 4