diff options
author | 2024-06-25 03:30:03 +0000 | |
---|---|---|
committer | 2024-06-25 22:47:49 +0000 | |
commit | b041087f58589a3136e68ce85fd117379e6ddb8c (patch) | |
tree | 2450a8f67d8be5e835fd37cfe891dad15ffcdae3 /java/app_test.go | |
parent | d6352efd1a0349a7e58ea48787009e59406ac8a8 (diff) |
Enforce that tests in MTS specify a min_sdk_version
Specifying min_sdk_version ensures backwards compatibility. There are
some existing violations, and those have been baseline'd using an
allowlist.
Bug: 156476221
Test: m nothing
Change-Id: I55098206da8ec5cfa0a9f5e7b41c9b8dedbdcbd2
Diffstat (limited to 'java/app_test.go')
-rw-r--r-- | java/app_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/app_test.go b/java/app_test.go index 1a862fa54..9e2d19ee8 100644 --- a/java/app_test.go +++ b/java/app_test.go @@ -4146,6 +4146,7 @@ func TestTargetSdkVersionMtsTests(t *testing.T) { bpTemplate := ` %v { name: "mytest", + min_sdk_version: "34", target_sdk_version: "%v", test_suites: ["othersuite", "%v"], } |