Home
last modified time | relevance | path

Searched refs:instrTest (Results 1 – 3 of 3) sorted by relevance

/cts/tools/tradefed-host/src/com/android/cts/tradefed/device/
DDeviceInfoCollector.java108 InstrumentationTest instrTest = new InstrumentationTest(); in runInstrumentation() local
109 instrTest.setDevice(device); in runInstrumentation()
110 instrTest.setInstallFile(apkFile); in runInstrumentation()
112 instrTest.setRerunMode(false); in runInstrumentation()
113 instrTest.setPackageName(packageName); in runInstrumentation()
114 instrTest.setRunName(AbiUtils.createId(abi, packageName)); in runInstrumentation()
115 instrTest.setRunnerName(instrumentName); in runInstrumentation()
116 instrTest.run(listener); in runInstrumentation()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DTestPackageDef.java295 CtsInstrumentationApkTest instrTest = new CtsInstrumentationApkTest(); in createTest() local
300 instrTest.setTestTimeout(mTimeoutInMins * 60 * 1000); in createTest()
302 return setInstrumentationTest(instrTest, testCaseDir); in createTest()
313 private InstrumentationTest setInstrumentationTest(CtsInstrumentationApkTest instrTest, in setInstrumentationTest() argument
315 instrTest.setRunName(getId()); in setInstrumentationTest()
316 instrTest.setPackageName(mAppNameSpace); in setInstrumentationTest()
317 instrTest.setRunnerName(mRunner); in setInstrumentationTest()
318 instrTest.setAbi(mAbi); in setInstrumentationTest()
319 instrTest.setTestsToRun(mTests, false in setInstrumentationTest()
321 instrTest.setReRunUsingTestFile(true); in setInstrumentationTest()
[all …]
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DApkInstrumentationPreparer.java121 AndroidJUnitTest instrTest = new AndroidJUnitTest(); in instrument() local
122 instrTest.setDevice(device); in instrument()
123 instrTest.setInstallFile(apkFile); in instrument()
124 instrTest.setPackageName(mPackageName); in instrument()
125 instrTest.run(listener); in instrument()