diff options
author | 2023-12-07 16:54:51 -0800 | |
---|---|---|
committer | 2023-12-08 13:51:07 -0800 | |
commit | b63d7b3af71b13d94f30f1d973d375a5fadfdd48 (patch) | |
tree | 4119f7f781e93397a929304fc9f8193dfab24b14 /android/mutator_test.go | |
parent | 8ff105860d20f2ccbb8d8044bf562f94100b7f6a (diff) |
Remove infrastructure to run bp2build
Bug: 315353489
Test: m blueprint_tests
Change-Id: Idcf6377d389b94c39e4e6ff4b8efa8a9f9e78b17
Diffstat (limited to 'android/mutator_test.go')
-rw-r--r-- | android/mutator_test.go | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/android/mutator_test.go b/android/mutator_test.go index dbdfa3362..21eebd2c8 100644 --- a/android/mutator_test.go +++ b/android/mutator_test.go @@ -16,7 +16,6 @@ package android import ( "fmt" - "reflect" "strings" "testing" @@ -268,22 +267,3 @@ func TestNoCreateVariationsInFinalDeps(t *testing.T) { FixtureWithRootAndroidBp(`test {name: "foo"}`), ).RunTest(t) } - -func TestConvertApexAvailableToTags(t *testing.T) { - input := []string{ - "com.android.adbd", - "//apex_available:platform", - } - actual := ConvertApexAvailableToTags(input) - expected := []string{ - "apex_available=com.android.adbd", - "apex_available=//apex_available:platform", - } - if !reflect.DeepEqual(actual, expected) { - t.Errorf("Expected: %v, actual: %v", expected, actual) - } - - if ConvertApexAvailableToTags(nil) != nil { - t.Errorf("Expected providing nil to return nil") - } -} |