HomeSort by relevance Sort by last modified time
    Searched defs:mShardedTestToRun (Results 1 - 2 of 2) sorted by null

  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
TestStub.java 55 protected List<TestDescription> mShardedTestToRun;
91 if (mShardedTestToRun == null) {
103 listener.testRunStarted("module-run", mShardedTestToRun.size() + 1);
105 listener.testRunStarted("module-run", mShardedTestToRun.size());
109 for (TestDescription tid : mShardedTestToRun) {
114 TestDescription tid = mShardedTestToRun.get(0);
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
TestSuiteStub.java 76 protected List<TestDescription> mShardedTestToRun;
135 if (mShardedTestToRun == null) {
147 listener.testRunStarted(mModule, mShardedTestToRun.size() + 1);
149 listener.testRunStarted(mModule, mShardedTestToRun.size());
153 for (TestDescription tid : mShardedTestToRun) {
158 TestDescription tid = mShardedTestToRun.get(0);
176 if (mShardedTestToRun == null) {
180 for (TestDescription id : mShardedTestToRun) {
183 stub.mShardedTestToRun = new ArrayList<>();
184 stub.mShardedTestToRun.add(id)
    [all...]

Completed in 443 milliseconds