From 4df566d313a355d684bebc4a528c2df489618e86 Mon Sep 17 00:00:00 2001 From: Dan Shi Date: Mon, 3 Apr 2017 12:29:25 -0700 Subject: [PATCH] Correct variable name LOCAL_COMPATIBILITY_SUITE Test: m -j checkbuild Bug: 35394669 Change-Id: I117224b2266520e6aec44aef62551b0836a83520 --- cc/androidmk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc/androidmk.go b/cc/androidmk.go index bf0ca6f9d..705ac90aa 100644 --- a/cc/androidmk.go +++ b/cc/androidmk.go @@ -199,7 +199,7 @@ func (test *testBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkDa ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) error { if len(test.Properties.Test_suites) > 0 { - fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITES :=", + fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=", strings.Join(test.Properties.Test_suites, " ")) } return nil