From a130a238153e9ef606dd05e724cda31fa957beaa Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Fri, 22 Jul 2022 13:17:07 -0700 Subject: Disable AndroidFrameworkLintCheckerTest Android lint was updated, and now includes some prebuilt classes compiled for java 15. The soong build doesn't support java 15 yet, so we can't have modules that compile against lint right now. Bug: 239881504 Bug: 236431222 Test: Presubmits Change-Id: I63ede36527db077c38fc52b10c31cdec18a619c1 --- packages/SystemUI/checks/Android.bp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/SystemUI/checks/Android.bp b/packages/SystemUI/checks/Android.bp index 61fc48f6c2f9..9671adde4904 100644 --- a/packages/SystemUI/checks/Android.bp +++ b/packages/SystemUI/checks/Android.bp @@ -37,6 +37,12 @@ java_library_host { java_test_host { name: "SystemUILintCheckerTest", + // TODO(b/239881504): Since this test was written, Android + // Lint was updated, and now includes classes that were + // compiled for java 15. The soong build doesn't support + // java 15 yet, so we can't compile against "lint". Disable + // the test until java 15 is supported. + enabled: false, srcs: [ "tests/**/*.kt", "tests/**/*.java", -- cgit v1.2.3-59-g8ed1b