Searched defs:test (Results 1 - 25 of 297) sorted by relevance

1234567891011>>

/frameworks/compile/libbcc/runtime/test/timing/
H A Dtime3 function test () { function
29 test $ARCH $FILE libgcc ""
30 test $ARCH $FILE tuned ../../darwin_fat/Release/libcompiler_rt.a
32 test $ARCH $FILE installed $INSTALLED
/frameworks/base/test-runner/src/android/test/
H A DNoExecTestResult.java16 package android.test;
22 * A benign test result that does no actually test execution, just runs
30 * Override parent to just inform listeners of test,
31 * and skip test execution.
34 protected void run(final TestCase test) { argument
35 startTest(test);
36 endTest(test);
H A DAssertionFailedError.java17 package android.test;
H A DTestSuiteProvider.java17 package android.test;
22 * Implementors will know how to get a test suite.
H A DTimedTest.java17 package android.test;
23 * This annotation can be used on an {@link junit.framework.TestCase}'s test methods. When the
24 * annotation is present, the test method is timed and the results written through instrumentation
25 * output. It can also be used on the class itself, which is equivalent to tagging all test methods
H A DLoaderTestCase.java17 package android.test;
29 * A convenience class for testing {@link Loader}s. This test case
56 // The test thread blocks on this queue until the loader puts it's result in
59 // This callback runs on the "main" thread and unblocks the test thread
69 // Store the result, unblocking the test thread
/frameworks/base/core/java/android/test/
H A DFlakyTest.java17 package android.test;
25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s
26 * test methods. When the annotation is present, the test method is re-executed if
27 * the test fails. The total number of executions is specified by the tolerance and
34 * Indicates how many times a test can run and fail before being reported
35 * as a failed test. If the tolerance factor is less than 1, the test runs
H A DRepetitiveTest.java17 package android.test;
25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s test methods.
26 * When the annotation is present, the test method is executed the number of times specified by
35 * Indicates the number of times a test case should be run.
H A DUiThreadTest.java17 package android.test;
25 * This annotation can be used on an {@link InstrumentationTestCase}'s test methods.
26 * When the annotation is present, the test method is executed on the application's
/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTest.java17 package android.test;
23 * This annotation can be used on an {@link junit.framework.TestCase}'s test methods. When the
24 * annotation is present, the test method is profiled for bandwidth metrics and the results
26 * which is equivalent to tagging all test methods with this annotation.
/frameworks/compile/linkloader/tests/stubs/
H A Darm-stub.c16 int test() { function
23 stub[1] = (uint32_t)(uintptr_t)test;
H A Dmips-stub.c36 int test() { function
43 stub[0] |= (((uint32_t)(uintptr_t)test) >> 16) & 0xffff;
44 stub[1] |= (((uint32_t)(uintptr_t)test)) & 0xffff;
/frameworks/compile/mclinker/unittests/
H A DSystemUtilsTest.h15 namespace test { namespace in namespace:mcld
20 // Constructor can do set-up work for all test here.
26 // SetUp() will be called immediately before each test.
29 // TearDown() will be called immediately after each test.
33 } // namespace of test
H A DReadStageTest.h16 namespace test { namespace in namespace:mcld
21 // Constructor can do set-up work for all test here.
27 // SetUp() will be called immediately before each test.
30 // TearDown() will be called immediately after each test.
40 } // end of namespace test
/frameworks/testing/androidtestlib/src/com/android/test/
H A DInjectContext.java16 package com.android.test;
20 import android.test.AndroidTestCase;
33 * into your JUnit4-style test.
39 * The test runner will set the value of this field with the {@link Instrumentation} after
42 * Declaring this in a JUnit3 test (ie a class that is a {@link Test}) will have no effect.
H A DInjectInstrumentation.java16 package com.android.test;
19 import android.test.InstrumentationTestCase;
31 * Use this to inject an {@link Instrumentation} into your JUnit4-style test.
38 * The test runner will set the value of this field with the {@link Instrumentation} after
41 * Declaring this in a JUnit3 test (ie a class that is a {@link Test}) will have no effect.
/frameworks/testing/androidtestlib/tests/src/com/android/test/
H A DMyAndroidTestCase.java16 package com.android.test;
19 import android.test.AndroidTestCase;
22 * Placeholder test to verify {@link Context} gets injected to {@link AndroidTestCase}.
26 // rely on testCaseSetupProperly to test for context
H A DMyInstrumentationTestCase.java16 package com.android.test;
19 import android.test.InstrumentationTestCase;
23 * Placeholder test to verify {@link Instrumentation} gets injected to
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
H A DNoExecTestResult.java16 package com.android.test.runner.junit3;
22 * A benign test result that does no actually test execution, just runs
29 * Override parent to just inform listeners of test,
30 * and skip test execution.
33 protected void run(final TestCase test) { argument
34 startTest(test);
35 endTest(test);
/frameworks/base/core/java/android/test/suitebuilder/annotation/
H A DLargeTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the large tests.
H A DMediumTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the medium tests.
H A DSmallTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the small tests.
H A DSmoke.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the smoke tests.
26 * The <code>android.test.suitebuilder.SmokeTestSuiteBuilder</code>
29 * @see android.test.suitebuilder.SmokeTestSuiteBuilder
H A DSuppress.java17 package android.test.suitebuilder.annotation;
25 * Use this annotation on test classes or test methods that should not be included in a test
27 * the annotation appears only on a test method then only that method will be excluded.
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DSmokeTestSuiteBuilderTest.java17 package android.test.suitebuilder;
32 assertEquals("Unexpected test name", "testSmoke", testCaseNames.get(0));

Completed in 441 milliseconds

1234567891011>>