cheets_CTS_R: Ignore crash in CtsWifi if all tests ran.

The test jobs records a crash when run under no-Wifi
environment like Chrome OS test lab. This failure is
expected, so we ignore the "test not fully executed"
error as long as the test count matches the expectation.

Next CTS release 11r4 will fix the root cause.

BUG=b:181179516
TEST=cheets_CTS_R.11_r3.arm.CtsWifi

Change-Id: Iddc9f67a878bc95ab6a492dde32836ca4b22e8d3
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2730379
Tested-by: Kazuhiro Inaba <kinaba@chromium.org>
Auto-Submit: Kazuhiro Inaba <kinaba@chromium.org>
Commit-Queue: Jiyoun Ha <jiyounha@chromium.org>
Reviewed-by: Jiyoun Ha <jiyounha@chromium.org>
diff --git a/server/site_tests/cheets_CTS_R/control.11_r3.arm.CtsWifi b/server/site_tests/cheets_CTS_R/control.11_r3.arm.CtsWifi
index f59c2dd..4bcc4ff 100644
--- a/server/site_tests/cheets_CTS_R/control.11_r3.arm.CtsWifi
+++ b/server/site_tests/cheets_CTS_R/control.11_r3.arm.CtsWifi
@@ -29,6 +29,10 @@
         bundle='arm',
         uri='LATEST',
         use_jdk9=True,
+        # This module has a known crash bug (b/181179516) to be fixed in 11r4.
+        # As long as the executed test count matches the known number, assume
+        # all tests ran.
+        executable_test_count=[255],
         timeout=12600)
 
 parallel_simple(run_TS, machines)
diff --git a/server/site_tests/cheets_CTS_R/control.11_r3.x86.CtsWifi b/server/site_tests/cheets_CTS_R/control.11_r3.x86.CtsWifi
index 52ba1c2..505c43e 100644
--- a/server/site_tests/cheets_CTS_R/control.11_r3.x86.CtsWifi
+++ b/server/site_tests/cheets_CTS_R/control.11_r3.x86.CtsWifi
@@ -29,6 +29,10 @@
         bundle='x86',
         uri='LATEST',
         use_jdk9=True,
+        # This module has a known crash bug (b/181179516) to be fixed in 11r4.
+        # As long as the executed test count matches the known number, assume
+        # all tests ran.
+        executable_test_count=[255],
         timeout=12600)
 
 parallel_simple(run_TS, machines)