Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 307) sorted by relevance

12345678910>>...13

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dimghdr.py22 for tf in tests:
35 tests = [] variable
42 tests.append(test_jpeg)
49 tests.append(test_exif)
55 tests.append(test_png)
62 tests.append(test_gif)
69 tests.append(test_tiff)
76 tests.append(test_rgb)
84 tests.append(test_pbm)
92 tests.append(test_pgm)
[all …]
Dsndhdr.py45 for tf in tests:
56 tests = [] variable
76 tests.append(test_aifc)
105 tests.append(test_au)
114 tests.append(test_hcom)
127 tests.append(test_voc)
140 tests.append(test_wav)
149 tests.append(test_8svx)
158 tests.append(test_sndt)
167 tests.append(test_sndr)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_lib2to3.py3 from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
9 tests = unittest.TestSuite()
13 tests.addTests(loader.loadTestsFromModule(m))
14 return tests
Dtest_imp.py69 tests = [
77 tests.append(LockTests)
78 test_support.run_unittest(*tests)
Dtest_json.py8 import json.tests
13 test.test_support.run_unittest(json.tests.test_suite())
Dtest_distutils.py9 import distutils.tests
13 test_support.run_unittest(distutils.tests.test_suite())
Dtest_univnewlines.py121 tests = []
130 tests.append(CTest)
131 tests.append(PyTest)
132 support.run_unittest(*tests)
Dtest_robotparser.py30 tests = unittest.TestSuite() variable
39 tests.addTest(RobotTestCase(index, parser, url, 1, agent))
41 tests.addTest(RobotTestCase(index, parser, url, 0, agent))
256 test_support.run_unittest(tests)
Dtest_ascii_formatd.py33 tests = [
48 for format, val in tests:
Dregrtest.py228 def main(tests=None, testdir=None, verbose=0, quiet=False, argument
395 tests = [next_test]
401 tests = []
406 tests.extend(guts)
411 removepy(tests)
423 if verbose or header or not (quiet or single or tests or args):
433 selected = tests or args or alltests
470 def test_forever(tests=list(selected)): argument
472 for test in tests:
476 tests = test_forever()
[all …]
/device/google/wahoo/wifi_offload/test/
Druntest.sh38 adb shell /data/nativetest/vendor/wifi-offload-service-unit-tests/wifi-offload-service-unit-tests
39 adb shell /data/nativetest64/vendor/wifi-offload-service-unit-tests/wifi-offload-service-unit-tests
/device/generic/goldfish/libqemu/
Dtests.mk9 LOCAL_MODULE_TAGS := tests
15 LOCAL_MODULE_TAGS := tests
21 LOCAL_MODULE_TAGS := tests
28 LOCAL_MODULE_TAGS := tests
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
Dpybench.py438 self.tests = {}
488 self.tests[name] = testclass(
492 l = self.tests.keys()
510 tests = self.tests.items()
511 tests.sort()
512 for i in range(len(tests)):
513 name, test = tests[i]
529 tests = self.tests.items()
530 tests.sort()
540 for j in range(len(tests)):
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dloader.py61 tests = []
65 tests.append(self.loadTestsFromTestCase(obj))
68 tests = self.suiteClass(tests)
71 return load_tests(self, tests, None)
75 return tests
204 tests = list(self._find_tests(start_dir, pattern))
205 return self.suiteClass(tests)
272 tests = None
278 tests = self.loadTestsFromModule(package, use_load_tests=False)
281 if tests is not None:
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
Dsupport.py25 def run_all_tests(test_mod=None, tests=None): argument
26 if tests is None:
27 tests = unittest.TestLoader().loadTestsFromModule(test_mod)
28 unittest.TextTestRunner(verbosity=2).run(tests)
D__init__.py16 tests = [t[0:-3] for t in os.listdir(tests_dir) variable
21 for t in tests:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
DdecSingle.decTest2 -- decSingle.decTest -- run all decSingle decimal arithmetic tests --
11 -- particular, achieving the same results as the tests here is not --
13 -- or specification. The tests are not exhaustive. --
22 -- decSingle tests
Dtestall.decTest11 -- particular, achieving the same results as the tests here is not --
13 -- or specification. The tests are not exhaustive. --
22 -- core tests (using Extended: 1) --------------------------------------
79 -- tests at those sizes [including dsEncode, ddEncode, and dqEncode,
85 -- General 31->33-digit boundary tests
DdecQuad.decTest2 -- decQuad.decTest -- run all decQuad decimal arithmetic tests --
11 -- particular, achieving the same results as the tests here is not --
13 -- or specification. The tests are not exhaustive. --
22 -- decQuad tests
DdecDouble.decTest2 -- decDouble.decTest -- run all decDouble decimal arithmetic tests --
11 -- particular, achieving the same results as the tests here is not --
13 -- or specification. The tests are not exhaustive. --
22 -- decDouble tests
Dabs.decTest11 -- particular, achieving the same results as the tests here is not --
13 -- or specification. The tests are not exhaustive. --
22 -- This set of tests primarily tests the existence of the operator.
90 -- overflow tests
126 -- long operand tests
159 -- Null tests
/device/google/cuttlefish_common/tests/ril/
Druntests.sh7 <no-args> run all tests
24 make -j32 -C $ANDROID_BUILD_TOP -f build/core/main.mk MODULES-IN-device-google-cuttlefish-tests-ril
27 adb uninstall com.android.cuttlefish.ril.tests || true
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_loader.py21 tests = unittest.TestSuite([Foo('test_1'), Foo('test_2')])
24 self.assertEqual(loader.loadTestsFromTestCase(Foo), tests)
161 def load_tests(loader, tests, pattern): argument
162 self.assertIsInstance(tests, unittest.TestSuite)
163 load_tests_args.extend((loader, tests, pattern))
164 return tests
179 def load_tests(loader, tests, pattern): argument
1117 tests = loader.suiteClass([Foo('test_2'), Foo('test_1')])
1118 self.assertEqual(loader.loadTestsFromTestCase(Foo), tests)
1135 tests = [loader.suiteClass([Foo('test_2'), Foo('test_1')])]
[all …]
Dtest_suite.py72 def tests(): function
76 suite_1 = unittest.TestSuite(tests())
93 def tests(): function
98 suite = unittest.TestSuite(tests())
203 tests = [LoggingCase('test1'), LoggingCase('test2')]
205 unittest.TestSuite(tests).run(result)
/device/google/cuttlefish_common/tests/wifi/
Druntests.sh7 <no-args> run all tests
27 adb uninstall com.android.cuttlefish.wifi.tests || true

12345678910>>...13