Fix install path of benchmarks
Benchmarks should go in /data/nativetest/<module> like tests. Change-Id: Ib72ee699334da6a6d27813822e1f86f2863227b3
This commit is contained in:
parent
b5bc4b412a
commit
624b8ed0b3
1 changed files with 6 additions and 4 deletions
10
cc/cc.go
10
cc/cc.go
|
@ -2254,10 +2254,12 @@ func NewBenchmark(hod android.HostOrDeviceSupported) *Module {
|
|||
module := newModule(hod, android.MultilibFirst)
|
||||
module.compiler = &baseCompiler{}
|
||||
module.linker = &benchmarkLinker{}
|
||||
module.installer = &baseInstaller{
|
||||
dir: "nativetest",
|
||||
dir64: "nativetest64",
|
||||
data: true,
|
||||
module.installer = &testInstaller{
|
||||
baseInstaller: baseInstaller{
|
||||
dir: "nativetest",
|
||||
dir64: "nativetest64",
|
||||
data: true,
|
||||
},
|
||||
}
|
||||
return module
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue