Skip to content

Commit

Permalink
Revert changes to the ddms library version and to StatusReporterMode
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Dyatlov committed Jul 4, 2024
1 parent 3881f8d commit 298e63c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Versions {
val coroutines = "1.7.3"
val ktor = "2.0.3"

val ddmlib = "31.4.2"
val ddmlib = "31.0.2"
val dexTestParser = "2.3.4"
val kotlinLogging = "1.4.9"
val slf4jAPI = "1.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import com.android.ddmlib.ShellCommandUnresponsiveException
import com.android.ddmlib.TimeoutException
import com.android.ddmlib.testrunner.ITestRunListener
import com.android.ddmlib.testrunner.RemoteAndroidTestRunner
import com.android.ddmlib.testrunner.RemoteAndroidTestRunner.StatusReporterMode
import com.android.ddmlib.testrunner.TestIdentifier
import com.malinskiy.marathon.android.AndroidComponentInfo
import com.malinskiy.marathon.android.AndroidConfiguration
Expand Down Expand Up @@ -105,12 +104,7 @@ class AndroidDeviceTestRunner(private val device: DdmlibAndroidDevice) {
testBatch: TestBatch
): RemoteAndroidTestRunner {

val runner = RemoteAndroidTestRunner(
info.instrumentationPackage,
info.testRunnerClass,
device.ddmsDevice,
StatusReporterMode.PROTO_STD
)
val runner = RemoteAndroidTestRunner(info.instrumentationPackage, info.testRunnerClass, device.ddmsDevice)

val tests = testBatch.tests.map {
val pkg = when {
Expand Down

0 comments on commit 298e63c

Please sign in to comment.