diff options
author | 2021-03-22 23:20:25 +0000 | |
---|---|---|
committer | 2021-03-30 23:44:43 +0100 | |
commit | 2e6f90e0d0ea43e15a29669e6c94be381cc7431c (patch) | |
tree | 569366157631a0cb7501d58ad814d7b251d06f68 | |
parent | dd3797b44eb9065d77069e51d2231385958897ee (diff) |
Extract prepareForCcTest
Bug: 182885307
Test: m nothing
Change-Id: Ica17d20775c6dae00978f0f84f768fdaaf55e031
-rw-r--r-- | cc/cc_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cc/cc_test.go b/cc/cc_test.go index 205c71fa8..ab4ef6cff 100644 --- a/cc/cc_test.go +++ b/cc/cc_test.go @@ -54,6 +54,10 @@ func TestMain(m *testing.M) { var ccFixtureFactory = android.NewFixtureFactory( &buildDir, + prepareForCcTest, +) + +var prepareForCcTest = android.GroupFixturePreparers( PrepareForTestWithCcIncludeVndk, android.FixtureModifyProductVariables(func(variables android.FixtureProductVariables) { variables.DeviceVndkVersion = StringPtr("current") |