HomeSort by relevance Sort by last modified time
    Searched refs:suite (Results 76 - 100 of 613) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())
test_lib2to3.py 8 def suite(): function
17 run_unittest(suite())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())
test_lib2to3.py 8 def suite(): function
17 run_unittest(suite())
  /external/chromium_org/third_party/skia/tools/
test_all.py 24 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
26 results = unittest.TextTestRunner(verbosity=2).run(suite)
  /external/skia/tools/
test_all.py 24 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
26 results = unittest.TextTestRunner(verbosity=2).run(suite)
  /development/testrunner/test_defs/
xml_suite_helper.py 18 """Utility to parse suite info from xml."""
39 _SUITE_ATTR = 'suite'
45 """Populates common suite attributes from given suite xml element.
52 parsed test suite or None
101 """Parses instrumentation suite attributes from xml."""
112 """Creates suite and populate with data from xml element."""
113 suite = instrumentation_test.InstrumentationTestSuite()
114 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
115 suite.SetPackageName(self._ParseAttribute(suite_element, self._PKG_ATTR
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
sunspider-compare-results 32 my $suite = "";
42 --suite Select a specific benchmark suite. The default is sunspider-1.0
43 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
44 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
49 'suite=s' => \$suite,
    [all...]
sunspider 39 my $suite = "";
57 --suite Select a specific benchmark suite. The default is sunspider-1.0
58 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
59 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
60 --parse-only Use the parse-only benchmark suite. Same as --suite=parse-onl
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
__init__.py 48 suite = additional_tests()
55 suite.addTests(loader.loadTestsFromModule(module))
56 return suite
59 suite = unittest.TestSuite()
61 suite.addTest(doctest.DocTestSuite(mod))
62 suite.addTest(TestPyTest('test_pyjson'))
63 suite.addTest(TestCTest('test_cjson'))
64 return suite
67 suite = test_suite()
69 runner.run(suite)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
__init__.py 48 suite = additional_tests()
55 suite.addTests(loader.loadTestsFromModule(module))
56 return suite
59 suite = unittest.TestSuite()
61 suite.addTest(doctest.DocTestSuite(mod))
62 suite.addTest(TestPyTest('test_pyjson'))
63 suite.addTest(TestCTest('test_cjson'))
64 return suite
67 suite = test_suite()
69 runner.run(suite)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
OutputStreamTesterTest.java 51 // TODO: Rewrite this test so that id doesn't need a suite().
52 private static junit.framework.Test suite() { method in class:OutputStreamTesterTest
53 TestSuite suite = new TestSuite(); local
56 suite.addTest(new FileOutputStreamSinkTester(true).createTests());
57 suite.addTest(new FileOutputStreamSinkTester(false).createTests());
58 suite.addTest(new ByteArrayOutputStreamSinkTester(0).setThrowsExceptions(false).createTests());
59 suite.addTest(new ByteArrayOutputStreamSinkTester(4).setThrowsExceptions(false).createTests());
60 suite.addTest(new PipedOutputStreamSinkTester().createTests());
63 suite.addTest(new BufferedOutputStreamTester(1).createTests());
64 suite.addTest(new BufferedOutputStreamTester(5).createTests())
    [all...]
WriterTesterTest.java 49 // TODO: Rewrite this test so that id doesn't need a suite().
50 private static junit.framework.Test suite() { method in class:WriterTesterTest
51 TestSuite suite = new TestSuite(); local
54 suite.addTest(new FileWriterCharSinkTester(true).createTests());
55 suite.addTest(new FileWriterCharSinkTester(false).createTests());
56 suite.addTest(new CharArrayWriterCharSinkTester().setThrowsExceptions(false).createTests());
57 suite.addTest(new StringWriterCharSinkTester().setThrowsExceptions(false).createTests());
58 suite.addTest(new PipedWriterCharSinkTester().createTests());
61 suite.addTest(new BufferedWriterCharSinkTester(1).createTests());
62 suite.addTest(new BufferedWriterCharSinkTester(5).createTests())
    [all...]
  /external/chromium_org/v8/tools/
run_benchmarks.py 11 The suite json format is expected to be:
14 "name": <optional suite name, file name is default>,
15 "archs": [<architecture name for which this suite is run>, ...],
18 "run_count": <how often will this suite run (optional)>,
19 "run_count_XXX": <how often will this suite run for arch XXX (optional)>,
35 The benchmarks field can also nest other suites in arbitrary depth. A suite
36 with a "main" file is a leaf suite that can contain one more level of
39 A suite's results_regexp is expected to have one string place holder
40 "%s" for the benchmark name. A benchmark's results_regexp overwrites suite
43 A suite's results_processor may point to an optional python script. I
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 9 we normalize those into having a suite.
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
33 if node.type == syms.suite:
46 """ one-line classes don't get a suite in the parse tree so we add
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
59 raise ValueError("No class suite and no ':'!")
61 # move everything into a suite node
62 suite = Node(syms.suite, [])
    [all...]
  /external/junit/src/org/junit/internal/runners/
SuiteMethod.java 10 * (those that only implement a static <code>suite()</code>
15 * public static junit.framework.Test suite() {
28 Test suite= null; local
30 suiteMethod= klass.getMethod("suite");
32 throw new Exception(klass.getName() + ".suite() must be static");
34 suite= (Test) suiteMethod.invoke(null); // static method
38 return suite;
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerTestRunner.java 42 TestSuite suite = new InstrumentationTestSuite(this); local
43 suite.addTestSuite(DownloadManagerTestApp.class);
44 return suite;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaFrameworkPerfTestRunner.java 43 TestSuite suite = new InstrumentationTestSuite(this); local
44 suite.addTestSuite(MediaPlayerPerformance.class);
45 return suite;
  /libcore/dom/src/test/java/tests/api/org/w3c/dom/
AllTests_Level1.java 35 public static final Test suite() { method in class:AllTests_Level1
48 throw new RuntimeException("problem creating dom test suite, "+e.getClass().getName()+", "+e.getMessage(), e);
50 TestSuite suite = new JUnitTestSuiteAdapter(domSuite); local
51 return suite;
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetCollectionTest.java 59 @GwtIncompatible("suite") // handled by collect/gwt/suites
61 public static Test suite() { method in class:ImmutableSetCollectionTest
62 TestSuite suite = new TestSuite(); local
64 suite.addTest(SetTestSuiteBuilder.using(new ImmutableSetCopyOfGenerator())
70 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
81 suite.addTest(SetTestSuiteBuilder.using(
88 suite.addTest(SetTestSuiteBuilder.using(
95 suite.addTest(SetTestSuiteBuilder.using(
102 suite.addTest(SetTestSuiteBuilder.using(new TestStringSortedSetGenerator() {
113 suite.addTest(SetTestSuiteBuilder.using
    [all...]
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
SmokeTestRunner.java 38 private static final String SUITE_NAME = "Smoke Test Suite";
45 final TestSuite suite = new TestSuite(SUITE_NAME); local
57 suite.addTest(setupTest);
66 suite.addTest(postBootTest);
85 suite.addTest(appTest);
95 suite.addTest(asyncErrorTest);
97 return suite;
  /external/chromium_org/tools/deep_memory_profiler/visualizer/
run_tests.py 24 suite = unittest.loader.TestLoader().discover(
28 unittest.TextTestRunner(verbosity=2).run(suite)
  /cts/tools/cts-native-scanner/tests/src/com/android/cts/nativescanner/
UnitTests.java 24 * A test suite for all cts-native-scanner unit tests.
37 public static Test suite() { method in class:UnitTests
  /cts/tools/vm-tests-tf/src/dot/
Main.java 29 TestRunner.run(AllTests.suite());

Completed in 1286 milliseconds

1 2 34 5 6 7 8 91011>>