From 33586f3b1065cac10c809499ae272f83ec4ada4f Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 11 Aug 2016 22:26:17 -0700 Subject: [PATCH] Fix cc_benchmark installs cc_benchmark was not propagating the call to baseInstaller.install, which resulted in no install location being set and the benchmarks installed in out/. Change-Id: I4399cd479d9cd7ec1b7332dd0d20a9ab3820b04e --- cc/test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cc/test.go b/cc/test.go index 3b89a1098..6ffa178b5 100644 --- a/cc/test.go +++ b/cc/test.go @@ -296,6 +296,7 @@ func (benchmark *benchmarkDecorator) linkerDeps(ctx BaseModuleContext, deps Deps func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Path) { benchmark.baseInstaller.dir = filepath.Join("nativetest", ctx.ModuleName()) benchmark.baseInstaller.dir64 = filepath.Join("nativetest64", ctx.ModuleName()) + benchmark.baseInstaller.install(ctx, file) } func NewBenchmark(hod android.HostOrDeviceSupported) *Module {