/external/shflags/test_results/1.2.0/ |
OpenSolaris-2009.06(snv_111b).txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 58 --- Executing the 'private' test suite --- 77 --- Executing the 'public' test suite --- 90 # Running the test suite with /bin/bash 95 --- Executing the 'defines' test suite --- 108 --- Executing the 'parsing' test suite --- 131 --- Executing the 'private' test suite --- 150 --- Executing the 'public' test suite -- [all...] |
/external/testng/src/main/resources/ |
testng-1.0.dtd | 6 A <b>suite</b> is made of <b>tests</b> and <b>parameters</b>. 11 <li> <b>parameters</b>, which override the suite parameters 27 @root suite 32 <!-- A suite is the top-level element of a testng.xml file --> 33 <!ELEMENT suite (groups?,(listeners|packages|test|parameter|method-selectors|suite-files)*) > 37 @attr name The name of this suite (as it will appear in the reports) 44 in tests of the suite 62 <!ATTLIST suite 81 <!-- A list of XML files that contain more suite descriptions -- [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/ |
gUnitAdapter.java | 47 public gUnitAdapter(TestSuite suite) throws IOException, ClassNotFoundException { 49 loader = new ParserLoader(suite.getGrammarName(), 50 suite.getTestSuiteFile().getParent()); 51 testSuite = suite; 61 // Parse gUnit test suite file 69 // Execute test suite
|
/external/autotest/client/site_tests/graphics_GLBench/ |
control.bvt | 23 # It is intentional that this suite is part of bvt-inline and bvt-perbuild 25 ATTRIBUTES = "suite:bvt-inline, suite:bvt-perbuild, suite:graphics, suite:graphics_per-day, suite:graphics_system"
|
/external/autotest/test_suites/ |
control.bvt-inline | 11 TEST_CLASS = "suite" 15 This is the portion of the Build Verification Test suite required 17 suite trigger automatic actions: 19 and block running tests from the bvt-cq suite. 24 Requirements for a test to be in this suite: 50 # filing bugs on tests that are a part of this suite. If left unspecified
|
control.faft_ec3po | 11 TEST_CLASS = "suite" 15 This is the same suite as faft_ec, but instead uses the EC-3PO console 16 interpreter inside of servod. This suite should be removed when satisfied with 19 This is a faft (FULLY AUTOMATED FIRMWARE TEST) suite. The tests in this suite 41 # filing bugs on tests that are a part of this suite. If left unspecified
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableEnumMapTest.java | 55 @GwtIncompatible("suite") 56 public static Test suite() { method in class:ImmutableEnumMapTest 57 TestSuite suite = new TestSuite(); local 58 suite.addTest(MapTestSuiteBuilder.using(new ImmutableEnumMapGenerator()) 64 suite.addTestSuite(ImmutableEnumMapTest.class); 65 return suite;
|
MapsCollectionTest.java | 65 public static Test suite() { method in class:MapsCollectionTest 66 TestSuite suite = new TestSuite(); local 68 suite.addTest(NavigableMapTestSuiteBuilder 82 suite.addTest(BiMapTestSuiteBuilder 103 suite.addTest(MapTestSuiteBuilder 158 suite.addTest(SortedMapTestSuiteBuilder 219 suite.addTest(NavigableMapTestSuiteBuilder 280 suite.addTest(filterSuite()); 281 suite.addTest(transformSuite()); 282 return suite; 286 TestSuite suite = new TestSuite("Filter"); local 295 TestSuite suite = new TestSuite("FilterMap"); local 369 TestSuite suite = new TestSuite("FilterBiMap"); local 424 TestSuite suite = new TestSuite("FilterSortedMap"); local 474 TestSuite suite = new TestSuite("FilterNavigableMap"); local 625 TestSuite suite = new TestSuite("Maps.transform"); local 633 TestSuite suite = new TestSuite("TransformMap"); local 676 TestSuite suite = new TestSuite("TransformSortedMap"); local 715 TestSuite suite = new TestSuite("TransformNavigableMap"); local [all...] |
SetOperationsTest.java | 44 @GwtIncompatible("suite") 45 public static Test suite() { method in class:SetOperationsTest 46 TestSuite suite = new TestSuite(); local 48 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() { 59 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() { 70 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() { 81 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() { 92 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() { 107 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() { 120 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() [all...] |
/external/harfbuzz_ng/ |
.travis.yml | 23 - make check || (cat */test-suite.log test/*/test-suite.log && false) 34 - make check || (cat */test-suite.log test/*/test-suite.log && false) 50 - make check || (cat */test-suite.log test/*/test-suite.log && false)
|
/external/testng/src/main/java/org/testng/remote/strprotocol/ |
SuiteMessage.java | 14 * A <code>IStringMessage</code> implementation for suite running events. 32 public SuiteMessage(final ISuite suite, final boolean startSuiteRun) { 33 m_suiteName = suite.getName(); 34 m_testMethodCount =suite.getInvokedMethods().size(); 36 Collection<ITestNGMethod> excludedMethods = suite.getExcludedMethods(); 97 return "[SuiteMessage suite:" + m_suiteName
|
/external/testng/src/main/java/org/testng/reporters/jq/ |
ChronologicalPanel.java | 25 public String getHeader(ISuite suite) { 30 public String getContent(ISuite suite, XMLStringBuffer main) { 32 List<IInvokedMethod> invokedMethods = suite.getAllInvokedMethods(); 50 cls = "configuration-suite before"; 52 cls = "configuration-suite after"; 97 public String getNavigatorLink(ISuite suite) {
|
/external/python/cpython3/Lib/unittest/test/ |
test_loader.py | 38 # "Return a suite of all test cases contained in the TestCase-derived 51 # "Return a suite of all test cases contained in the TestCase-derived 64 # "Return a suite of all test cases contained in the TestCase-derived 85 # "Return a suite of all test cases contained in the TestCase-derived 100 suite = loader.loadTestsFromTestCase(Foo) 101 self.assertIsInstance(suite, loader.suiteClass) 102 self.assertEqual(list(suite), [Foo('runTest')]) 119 suite = loader.loadTestsFromModule(m) 120 self.assertIsInstance(suite, loader.suiteClass) 123 self.assertEqual(list(suite), expected [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ >
51 suite = results["suite"]
54 # TODO(cwinter): suite-cleanup
55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
93 line.parent = suite[0]
95 # TODO(cwinter) suite-cleanup
99 elif is_docstring(suite[0].children[start]):
104 line.parent = suite[0] [all...] |
/external/llvm/docs/ |
TestSuiteMakefileGuide.rst | 2 LLVM test-suite Guide 12 test-suite as well as the cmake based replacement. This way of interacting 13 with the test-suite is deprecated in favor of running the test-suite using LNT, 15 Guide's :ref:`test-suite Quickstart <test-suite-quickstart>` section for more 18 Test suite Structure 21 The ``test-suite`` module contains a number of programs that can be 37 In addition for testing correctness, the ``test-suite`` directory also 43 ``test-suite`` tests are divided into three types of tests: MultiSource [all...] |
/external/python/cpython2/Lib/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ > 51 suite = results["suite"] 54 # TODO(cwinter): suite-cleanup 55 if suite[0].children[1].type == token.INDENT: 57 indent = suite[0].children[1].value 93 line.parent = suite[0] 95 # TODO(cwinter) suite-cleanup 99 elif is_docstring(suite[0].children[start]): 104 line.parent = suite[0 [all...] |
/external/python/cpython3/Lib/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ > 51 suite = results["suite"] 54 # TODO(cwinter): suite-cleanup 55 if suite[0].children[1].type == token.INDENT: 57 indent = suite[0].children[1].value 93 line.parent = suite[0] 95 # TODO(cwinter) suite-cleanup 99 elif is_docstring(suite[0].children[start]): 104 line.parent = suite[0 [all...] |
/external/testng/src/main/java/org/testng/xml/ |
Parser.java | 20 * <code>Parser</code> is a parser for a TestNG XML test suite file. 33 /** The default file name for the TestNG test suite if none is specified (testng.xml). */ 45 /** The file name of the xml suite being parsed. This may be null if the Parser 56 * the xml test suite to parse. 129 * Parses the TestNG test suite and returns the corresponding XmlSuite, 130 * and possibly, other XmlSuite that are pointed to by <suite-files> 133 * @return the parsed TestNG test suite. 137 * @throws IOException if an I/O error occurs while parsing the test suite file or 143 // Each suite found is put in this list, using their canonical 159 * Keeps a track of parent XmlSuite for each child suite [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ > 51 suite = results["suite"] 54 # TODO(cwinter): suite-cleanup 55 if suite[0].children[1].type == token.INDENT: 57 indent = suite[0].children[1].value 93 line.parent = suite[0] 95 # TODO(cwinter) suite-cleanup 99 elif is_docstring(suite[0].children[start]): 104 line.parent = suite[0 [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ > 51 suite = results["suite"] 54 # TODO(cwinter): suite-cleanup 55 if suite[0].children[1].type == token.INDENT: 57 indent = suite[0].children[1].value 93 line.parent = suite[0] 95 # TODO(cwinter) suite-cleanup 99 elif is_docstring(suite[0].children[start]): 104 line.parent = suite[0 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ > 51 suite = results["suite"] 54 # TODO(cwinter): suite-cleanup 55 if suite[0].children[1].type == token.INDENT: 57 indent = suite[0].children[1].value 93 line.parent = suite[0] 95 # TODO(cwinter) suite-cleanup 99 elif is_docstring(suite[0].children[start]): 104 line.parent = suite[0 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 38 ['->' any] ':' suite=any+ > 51 suite = results["suite"] 54 # TODO(cwinter): suite-cleanup 55 if suite[0].children[1].type == token.INDENT: 57 indent = suite[0].children[1].value 93 line.parent = suite[0] 95 # TODO(cwinter) suite-cleanup 99 elif is_docstring(suite[0].children[start]): 104 line.parent = suite[0 [all...] |
/compatibility/cdd/10_software-compatibility-testing/ |
10_1_compatibility_test_suite.md | 1 ## 10.1\. Compatibility Test Suite 5 * [C-0-1] MUST pass the [Android Compatibility Test Suite (CTS)](http://source.android.com/compatibility/index.html)
|
/cts/tests/libcore/javautilcollections/src/libcore/java/util/suite/ |
ConcurrentSkipListMapNaturalSuite.java | 18 package libcore.java.util.suite; 27 public static Test suite() { method in class:ConcurrentSkipListMapNaturalSuite
|
ConcurrentSkipListMapWithComparatorSuite.java | 18 package libcore.java.util.suite; 27 public static Test suite() { method in class:ConcurrentSkipListMapWithComparatorSuite
|