summaryrefslogtreecommitdiff
path: root/cc/test.go
diff options
context:
space:
mode:
author Dan Willemsen <dwillemsen@google.com> 2016-08-29 15:53:15 -0700
committer Dan Willemsen <dwillemsen@google.com> 2016-08-29 16:02:05 -0700
commit1d577e25a7aa7a761bd8fcbc6ea9ca349a8f4704 (patch)
tree6aff0d34142403adfa03b774b9e2a13537546936 /cc/test.go
parent15690c02d64088716c6e8cec963819f2cd997593 (diff)
Expose module suffixes to Make
These had only been exposed for shared libraries. Also fixes testDecorator to not have two baseInstallers both being written out to the Android.mk. Bug: 31158868 Test: manual diff of out/soong/Android-aosp_flounder.mk Test: Verify installed windows binaries end in .exe Change-Id: I2bded5fb090117d48ade575b4438e0dedd2e3763
Diffstat (limited to 'cc/test.go')
-rw-r--r--cc/test.go18
1 files changed, 8 insertions, 10 deletions
diff --git a/cc/test.go b/cc/test.go
index 6ffa178b5..27b45d75e 100644
--- a/cc/test.go
+++ b/cc/test.go
@@ -181,7 +181,6 @@ type testBinary struct {
testDecorator
*binaryDecorator
*baseCompiler
- *baseInstaller
Properties TestBinaryProperties
}
@@ -209,14 +208,15 @@ func (test *testBinary) linkerFlags(ctx ModuleContext, flags Flags) Flags {
}
func (test *testBinary) install(ctx ModuleContext, file android.Path) {
- test.baseInstaller.dir = filepath.Join("nativetest", ctx.ModuleName())
- test.baseInstaller.dir64 = filepath.Join("nativetest64", ctx.ModuleName())
- test.baseInstaller.install(ctx, file)
+ test.binaryDecorator.baseInstaller.dir = filepath.Join("nativetest", ctx.ModuleName())
+ test.binaryDecorator.baseInstaller.dir64 = filepath.Join("nativetest64", ctx.ModuleName())
+ test.binaryDecorator.baseInstaller.install(ctx, file)
}
func NewTest(hod android.HostOrDeviceSupported) *Module {
module, binary := NewBinary(hod)
module.multilib = android.MultilibBoth
+ binary.baseInstaller = NewTestInstaller()
test := &testBinary{
testDecorator: testDecorator{
@@ -224,7 +224,6 @@ func NewTest(hod android.HostOrDeviceSupported) *Module {
},
binaryDecorator: binary,
baseCompiler: NewBaseCompiler(),
- baseInstaller: NewTestInstaller(),
}
test.testDecorator.Properties.Gtest = true
module.compiler = test
@@ -275,7 +274,6 @@ func NewTestLibrary(hod android.HostOrDeviceSupported) *Module {
type benchmarkDecorator struct {
*binaryDecorator
- *baseInstaller
}
func (benchmark *benchmarkDecorator) linkerInit(ctx BaseModuleContext) {
@@ -294,18 +292,18 @@ 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)
+ benchmark.binaryDecorator.baseInstaller.dir = filepath.Join("nativetest", ctx.ModuleName())
+ benchmark.binaryDecorator.baseInstaller.dir64 = filepath.Join("nativetest64", ctx.ModuleName())
+ benchmark.binaryDecorator.baseInstaller.install(ctx, file)
}
func NewBenchmark(hod android.HostOrDeviceSupported) *Module {
module, binary := NewBinary(hod)
module.multilib = android.MultilibBoth
+ binary.baseInstaller = NewTestInstaller()
benchmark := &benchmarkDecorator{
binaryDecorator: binary,
- baseInstaller: NewTestInstaller(),
}
module.linker = benchmark
module.installer = benchmark