/external/autotest/test_suites/ |
control.faft_setup | 7 PURPOSE = "Suite to setup and run sanity checks to ensure DUT is ready for FAFT" 11 TEST_CLASS = "suite" 15 This is a faft (FULLY AUTOMATED FIRMWARE TEST) suite. The tests in this suite 32 # filing bugs on tests that are a part of this suite. If left unspecified
|
/external/boringssl/src/fipstools/ |
cavp_main.cc | 16 // CAVP validation suite binaries. 28 fprintf(stderr, "usage: %s <validation suite> <args ...>\n", arg); 64 const std::string suite(argv[1]); 66 if (s.name == suite) { 71 fprintf(stderr, "invalid test suite: %s\n\n", argv[1]);
|
/external/brotli/java/org/brotli/wrapper/dec/ |
DecoderTest.java | 36 /** Creates a test suite. */ 37 public static TestSuite suite() throws IOException { method in class:DecoderTest 38 TestSuite suite = new TestSuite(); local 43 suite.addTest(new DecoderTestCase(entry)); 48 return suite;
|
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/ |
README | 8 To use this test suite, simply install it someplace on the system to be 9 tested and then invoke the test suite as root: 18 No compilation or installation is required to use this test suite; it 32 About the Test Suite 35 implementing a test suite. These include process management, timing,
|
/external/python/cpython3/Lib/test/test_json/ |
__init__.py | 49 suite = unittest.TestSuite() 51 suite.addTest(doctest.DocTestSuite(mod)) 52 suite.addTest(TestPyTest('test_pyjson')) 53 suite.addTest(TestCTest('test_cjson')) 56 return support.load_package_tests(pkg_dir, loader, suite, pattern)
|
/external/shflags/test_results/1.0.2/ |
Solaris-11.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 34 --- Executing the 'parsing' test suite --- 59 --- Executing the 'private' test suite --- 71 --- Executing the 'public' test suite --- 84 # Running the test suite with /bin/bash 89 --- Executing the 'defines' test suite --- 101 --- Executing the 'parsing' test suite --- 126 --- Executing the 'private' test suite --- 138 --- Executing the 'public' test suite -- [all...] |
Linux-Ubuntu-6.06.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 34 --- Executing the 'parsing' test suite --- 54 --- Executing the 'private' test suite --- 66 --- Executing the 'public' test suite --- 79 # Running the test suite with /bin/bash 84 --- Executing the 'defines' test suite --- 96 --- Executing the 'parsing' test suite --- 116 --- Executing the 'private' test suite --- 128 --- Executing the 'public' test suite -- [all...] |
Linux-Red_Hat_Linux_release_9_(Shrike).txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 34 --- Executing the 'parsing' test suite --- 54 --- Executing the 'private' test suite --- 66 --- Executing the 'public' test suite --- 79 # Running the test suite with /bin/bash 84 --- Executing the 'defines' test suite --- 96 --- Executing the 'parsing' test suite --- 116 --- Executing the 'private' test suite --- 128 --- Executing the 'public' test suite -- [all...] |
/external/testng/src/main/java/org/testng/internal/ |
Yaml.java | 82 public static StringBuilder toYaml(XmlSuite suite) { 85 maybeAdd(result, "name", suite.getName(), null); 86 maybeAdd(result, "junit", suite.isJUnit(), XmlSuite.DEFAULT_JUNIT); 87 maybeAdd(result, "verbose", suite.getVerbose(), XmlSuite.DEFAULT_VERBOSE); 88 maybeAdd(result, "threadCount", suite.getThreadCount(), XmlSuite.DEFAULT_THREAD_COUNT); 89 maybeAdd(result, "dataProviderThreadCount", suite.getDataProviderThreadCount(), 91 maybeAdd(result, "timeOut", suite.getTimeOut(), null); 92 maybeAdd(result, "parallel", suite.getParallel(), XmlSuite.DEFAULT_PARALLEL); 93 maybeAdd(result, "skipFailedInvocationCounts", suite.skipFailedInvocationCounts(), 96 toYaml(result, "parameters", "", suite.getParameters()) [all...] |
/external/testng/src/test/java/test/ |
TestHelper.java | 45 public static TestNG createTestNG(XmlSuite suite) { 46 return createTestNG(suite, System.getProperty("java.io.tmpdir")); 49 public static TestNG createTestNG(XmlSuite suite, String outputDir) { 51 if (suite != null) { 53 suites.add(suite);
|
/external/toolchain-utils/android_bench_suite/ |
README.txt | 1 This is a Android Toolchain benchmark suite. 3 Where to find this suite: 4 This suite locates at google3, please create a google3 branch first, 9 To use this suite: 28 4. The raw results locate at bench_result_* in bench suite home
|
/external/vogar/test/vogar/ |
ScriptBuilderEscapingTest.java | 29 public static Test suite() { method in class:ScriptBuilderEscapingTest 30 TestSuite suite = new TestSuite(ScriptBuilderEscapingTest.class.getName()); local 33 suite.addTest(new SingleCharacterEscapeTest(c)); 35 suite.addTest(new MixedCharacterEscapeTest()); 36 return suite;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
UnitTests.java | 31 * i.e. from Eclipse workbench, this suite must be run using the 38 public static Test suite() { method in class:UnitTests 39 TestSuite suite = new TestSuite(); local 43 collector.addTestCases(suite, AdtPlugin.getDefault(), TEST_PACKAGE); 45 return suite;
|
/system/bt/tools/bdtool/ |
Android.mk.disabled | 29 ../../test/suite/support/callbacks.c \ 30 ../../test/suite/support/gatt.c \ 31 ../../test/suite/support/hal.c \ 32 ../../test/suite/support/pan.c 39 $(LOCAL_PATH)/../../test/suite \
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
ITestSuiteIntegrationTest.java | 16 package com.android.tradefed.testtype.suite; 48 import com.android.tradefed.result.suite.SuiteResultReporter; 49 import com.android.tradefed.suite.checker.ISystemStatusChecker; 50 import com.android.tradefed.suite.checker.ISystemStatusCheckerReceiver; 84 + "<test class=\"com.android.tradefed.testtype.suite.%s\">\n" 150 mTestConfigFolder = FileUtil.createTempDir("suite-integration"); 222 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 223 suite.setDevice(mMockDevice); 224 suite.setBuild(mMockBuildInfo); 225 suite.setSystemStatusChecker(new ArrayList<ISystemStatusChecker>()) 262 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 318 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 346 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 373 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 488 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 528 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 575 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder); local 656 ITestSuite suite = new TestSuiteFolderImpl(mTestConfigFolder, tests); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
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/shflags/test_results/1.0.3/ |
Linux-Ubuntu-6.06.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 --- 70 --- Executing the 'public' test suite --- 83 # Running the test suite with /bin/bash 88 --- Executing the 'defines' test suite --- 101 --- Executing the 'parsing' test suite --- 124 --- Executing the 'private' test suite --- 136 --- Executing the 'public' test suite -- [all...] |
Solaris-5.11-NexentaOS_20081207.txt | 17 # Running the test suite with /bin/sh 22 --- Executing the 'defines' test suite --- 35 --- Executing the 'parsing' test suite --- 61 --- Executing the 'private' test suite --- 73 --- Executing the 'public' test suite --- 86 # Running the test suite with /bin/bash 91 --- Executing the 'defines' test suite --- 104 --- Executing the 'parsing' test suite --- 130 --- Executing the 'private' test suite --- 142 --- Executing the 'public' test suite -- [all...] |
/external/autotest/client/common_lib/ |
control_data_unittest.py | 28 ATTRIBUTES = "suite:smoke, suite:bvt" 29 SUITE = "suite-listed-only-in-suite-line" 52 ATTRIBUTES = "suite:smoke, suite:bvt" 53 SUITE = "suite-listed-only-in-suite-line [all...] |
/external/shflags/test_results/1.0.1/ |
Linux-Ubuntu_Dapper-6.06.txt | 17 # Running the test suite with /bin/sh 20 --- Executing the 'defines' test suite --- 39 --- Executing the 'parsing' test suite --- 63 --- Executing the 'private' test suite --- 81 --- Executing the 'public' test suite --- 99 # Running the test suite with /bin/bash 105 --- Executing the 'defines' test suite --- 124 --- Executing the 'parsing' test suite --- 148 --- Executing the 'private' test suite --- 166 --- Executing the 'public' test suite -- [all...] |
/external/capstone/suite/ |
fuzz.py | 5 # ./suite/fuzz.py --> Fuzz all archs 6 # ./suite/fuzz.py x86 --> Fuzz all X86 (all 16bit, 32bit, 64bit) 7 # ./suite/fuzz.py x86-16 --> Fuzz X86-32 arch only 8 # ./suite/fuzz.py x86-32 --> Fuzz X86-32 arch only 9 # ./suite/fuzz.py x86-64 --> Fuzz X86-64 arch only 10 # ./suite/fuzz.py arm --> Fuzz all ARM (arm, thumb) 11 # ./suite/fuzz.py aarch64 --> Fuzz ARM-64 12 # ./suite/fuzz.py mips --> Fuzz all Mips (32bit, 64bit) 13 # ./suite/fuzz.py ppc --> Fuzz PPC
|
/external/guava/guava-tests/test/com/google/common/io/ |
ByteSinkTester.java | 47 TestSuite suite = new TestSuite(name); local 51 suite.addTest(stringSuite); 53 return suite; 59 TestSuite suite = suiteForBytes(name, factory, desc, bytes); local 61 suite.addTest(CharSinkTester.suiteForString(name + ".asCharSink[Charset]", charSinkFactory, 63 return suite; 68 TestSuite suite = new TestSuite(name + " [" + desc + "]"); local 70 suite.addTest(new ByteSinkTester(factory, bytes, name, desc, method)); 72 return suite;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestsForListsInJavaUtil.java | 39 * Generates a test suite covering the {@link List} implementations in the 46 public static Test suite() { method in class:TestsForListsInJavaUtil 51 TestSuite suite = new TestSuite("java.util Lists"); local 52 suite.addTest(testsForEmptyList()); 53 suite.addTest(testsForSingletonList()); 54 suite.addTest(testsForArraysAsList()); 55 suite.addTest(testsForArrayList()); 56 suite.addTest(testsForLinkedList()); 57 suite.addTest(testsForCopyOnWriteArrayList()); 58 suite.addTest(testsForUnmodifiableList()) [all...] |
TestsForSetsInJavaUtil.java | 43 * Generates a test suite covering the {@link Set} implementations in the 50 public static Test suite() { method in class:TestsForSetsInJavaUtil 55 TestSuite suite = new TestSuite("java.util Sets"); local 56 suite.addTest(testsForEmptySet()); 57 suite.addTest(testsForSingletonSet()); 58 suite.addTest(testsForHashSet()); 59 suite.addTest(testsForLinkedHashSet()); 60 suite.addTest(testsForEnumSet()); 61 suite.addTest(testsForTreeSetNatural()); 62 suite.addTest(testsForTreeSetWithComparator()) [all...] |
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
JSR166TestCase.java | 166 // Test s = suite(); 176 // TestSuite suite = new TestSuite(); 179 // suite.addTest((TestSuite) suiteOrClass); 181 // suite.addTest(new TestSuite((Class<?>) suiteOrClass)); 183 // throw new ClassCastException("not a test suite or class"); 185 // return suite; 189 // * Collects all JSR166 unit tests as one suite. 191 // public static Test suite() { 193 // ForkJoinPoolTest.suite(), 194 // ForkJoinTaskTest.suite(), [all...] |