diff options
author | Remi NGUYEN VAN <reminv@google.com> | 2019-07-18 13:25:38 +0900 |
---|---|---|
committer | Remi NGUYEN VAN <reminv@google.com> | 2019-07-24 16:52:39 +0900 |
commit | 03886222d30b70068f16c63f95d573d25ce6df4a (patch) | |
tree | 0d1d5534d9c3cf5347b10bdf6b9ef82d0830713a | |
parent | 05bb41f1250dffbc39a33e3274bba09f7982bb9e (diff) |
Add host and integration tests to postsubmit
Add NetworkStackHostTests, NetworkStackIntegrationTests to postsubmit as
a first step. Ultimately the tests should be moved to presubmit, but
postsubmit should verify that they are passing properly on the test
infrastructure, without flakes.
Test: atest NetworkStackHostTests NetworkStackIntegrationTests
Bug: 133389827
Change-Id: Id34634631ca2c5f32e752d6d8c846693cc417dab
-rw-r--r-- | TEST_MAPPING | 10 | ||||
-rw-r--r-- | tests/hostdriven/Android.bp | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/TEST_MAPPING b/TEST_MAPPING index fe9731f..e5c8117 100644 --- a/TEST_MAPPING +++ b/TEST_MAPPING @@ -3,5 +3,13 @@ { "name": "NetworkStackTests" } + ], + "postsubmit": [ + { + "name": "NetworkStackHostTests" + }, + { + "name": "NetworkStackIntegrationTests" + } ] -}
\ No newline at end of file +} diff --git a/tests/hostdriven/Android.bp b/tests/hostdriven/Android.bp index caa4f2c..ec36424 100644 --- a/tests/hostdriven/Android.bp +++ b/tests/hostdriven/Android.bp @@ -25,5 +25,6 @@ java_test_host { "kotlin-test", "module_test_util", ], + test_suites: ["device-tests"], data: [":NetworkStack"], } |