aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Desprez <jdesprez@google.com>2021-02-24 09:26:04 -0800
committerJulien Desprez <jdesprez@google.com>2021-02-24 09:26:04 -0800
commit5eb6329156e26037414e6ae2662a1aaea7682c13 (patch)
treeebc79d81a0ca3240686c38c15599036ab6c11fe0
parente615c5896147f3fdc849b5e038243634b2893616 (diff)
downloadjunit-params-5eb6329156e26037414e6ae2662a1aaea7682c13.tar.gz
Mark junit-params-test as not unit tests
They have one existing failure due to update in Junit error text. These tests would be hard to maintain in presubmit as unit_tests since they are external. Test: presubmit Bug: 180736967 Change-Id: I531c5c950b1ee4cf12fc9109d855eea8f9563f65
-rw-r--r--Android.bp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index eb14249..d1a7625 100644
--- a/Android.bp
+++ b/Android.bp
@@ -60,6 +60,11 @@ java_library_host {
java_test {
name: "junit-params-test",
host_supported: true,
+ // Don't consider those unit tests, they would be hard to maintain since they are
+ // from external, and have dependencies on the junit version.
+ test_options: {
+ unit_test: false,
+ },
srcs: ["src/test/java/**/*.java"],
java_resource_dirs: ["src/test/resources"],
sdk_version: "core_current",