diff options
Diffstat (limited to 'cc/binary_test.go')
-rw-r--r-- | cc/binary_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cc/binary_test.go b/cc/binary_test.go index e0b5b5d20..2fac0023b 100644 --- a/cc/binary_test.go +++ b/cc/binary_test.go @@ -15,9 +15,10 @@ package cc import ( - "android/soong/bazel/cquery" "testing" + "android/soong/bazel/cquery" + "android/soong/android" ) @@ -53,6 +54,9 @@ cc_binary { unStrippedFilePath := binMod.(*Module).UnstrippedOutputFile() expectedUnStrippedFile := "outputbase/execroot/__main__/foo.unstripped" android.AssertStringEquals(t, "Unstripped output file", expectedUnStrippedFile, unStrippedFilePath.String()) + + entries := android.AndroidMkEntriesForTest(t, ctx, binMod)[0] + android.AssertStringEquals(t, "unexpected LOCAL_SOONG_MODULE_TYPE", "cc_binary", entries.EntryMap["LOCAL_SOONG_MODULE_TYPE"][0]) } func TestCcBinaryWithBazelValidations(t *testing.T) { |