Fix install path of benchmarks
Benchmarks should go in /data/nativetest/<module> like tests. Change-Id: Ib72ee699334da6a6d27813822e1f86f2863227b3
This commit is contained in:
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
|
||||
}
|
||||
|
Reference in New Issue
Block a user