aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuexi Ma <yuexima@google.com>2020-02-03 17:03:21 -0800
committerYuexi Ma <yuexima@google.com>2020-02-03 17:05:23 -0800
commite37ccab20df531cc66153ea86336ba44fece676c (patch)
tree0ec2f24d3bd77fc826fc67c4c00e8b14a4a699ed
parent0fb8ed7540fb176a02c179626961fd210a8f8e34 (diff)
downloadcsuite-e37ccab20df531cc66153ea86336ba44fece676c.tar.gz
Set local auto retry count to 0
Setting the retry count to 0 disables local auto retry since now we are able to use TradeFed retry. Test: make csuite Bug: 147330213 Change-Id: Ic20880415d1dbd893eb3f94dd70f7521e64b4363
-rw-r--r--harness/src/main/java/com/android/compatibility/testtype/AppLaunchTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/harness/src/main/java/com/android/compatibility/testtype/AppLaunchTest.java b/harness/src/main/java/com/android/compatibility/testtype/AppLaunchTest.java
index e54df32..9216985 100644
--- a/harness/src/main/java/com/android/compatibility/testtype/AppLaunchTest.java
+++ b/harness/src/main/java/com/android/compatibility/testtype/AppLaunchTest.java
@@ -66,10 +66,11 @@ public class AppLaunchTest
@Option(name = "test-label", description = "Unique test identifier label.")
private String mTestLabel = "AppCompatibility";
+ @Deprecated
@Option(
name = "retry-count",
description = "Number of times to retry a failed test case. 0 means no retry.")
- private int mRetryCount = 5;
+ private int mRetryCount = 0;
@Option(name = "include-filter", description = "The include filter of the test type.")
protected Set<String> mIncludeFilters = new HashSet<>();