HomeSort by relevance Sort by last modified time
    Searched refs:load_tests (Results 1 - 10 of 10) sorted by null

  /external/v8/test/cctest/compiler/
test-run-variables.cc 14 static const char* load_tests[] = { variable
81 RunVariableTests(source, load_tests);
87 RunVariableTests(source, load_tests);
  /external/lldb/test/unittest2/
loader.py 87 load_tests = getattr(module, 'load_tests', None)
89 if use_load_tests and load_tests is not None:
91 return load_tests(self, tests, None)
174 pattern then the package will be checked for a 'load_tests' function. If
177 If load_tests exists then discovery does *not* recurse into the package,
178 load_tests is responsible for loading all tests in the package.
182 load_tests does not need to pass this argument in to loader.discover().
186 # make top_level_dir optional if called from load_tests in a package
279 load_tests = Non
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
loader.py 67 load_tests = getattr(module, 'load_tests', None)
69 if use_load_tests and load_tests is not None:
71 return load_tests(self, tests, None)
154 pattern then the package will be checked for a 'load_tests' function. If
157 If load_tests exists then discovery does *not* recurse into the package,
158 load_tests is responsible for loading all tests in the package.
162 load_tests does not need to pass this argument in to loader.discover().
166 # make top_level_dir optional if called from load_tests in a package
271 load_tests = Non
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
loader.py 67 load_tests = getattr(module, 'load_tests', None)
69 if use_load_tests and load_tests is not None:
71 return load_tests(self, tests, None)
154 pattern then the package will be checked for a 'load_tests' function. If
157 If load_tests exists then discovery does *not* recurse into the package,
158 load_tests is responsible for loading all tests in the package.
162 load_tests does not need to pass this argument in to loader.discover().
166 # make top_level_dir optional if called from load_tests in a package
271 load_tests = Non
    [all...]
  /external/lldb/test/unittest2/test/
test_discovery.py 101 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__
103 return 'load_tests'
104 self.load_tests = load_tests
124 # We should have loaded tests from the test_directory package by calling load_tests
127 ['load_tests', 'test_directory2' + ' module tests'])
130 # load_tests should have been called once with loader, tests and pattern
test_loader.py 151 # with a load_tests function.
160 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests
164 m.load_tests = load_tests
178 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests
180 m.load_tests = load_tests
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__
102 return 'load_tests'
103 self.load_tests = load_tests
123 # We should have loaded tests from the test_directory package by calling load_tests
126 ['load_tests', 'test_directory2' + ' module tests'])
129 # load_tests should have been called once with loader, tests and pattern
test_loader.py 152 # with a load_tests function.
161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests
165 m.load_tests = load_tests
179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests
181 m.load_tests = load_tests
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 100 def load_tests(loader, tests, pattern): function in function:TestDiscovery.test_find_tests_with_package.Module.__init__
102 return 'load_tests'
103 self.load_tests = load_tests
123 # We should have loaded tests from the test_directory package by calling load_tests
126 ['load_tests', 'test_directory2' + ' module tests'])
129 # load_tests should have been called once with loader, tests and pattern
test_loader.py 152 # with a load_tests function.
161 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__load_tests
165 m.load_tests = load_tests
179 def load_tests(loader, tests, pattern): function in function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests
181 m.load_tests = load_tests
    [all...]

Completed in 113 milliseconds