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 := newModule(hod, android.MultilibFirst)
|
||||||
module.compiler = &baseCompiler{}
|
module.compiler = &baseCompiler{}
|
||||||
module.linker = &benchmarkLinker{}
|
module.linker = &benchmarkLinker{}
|
||||||
module.installer = &baseInstaller{
|
module.installer = &testInstaller{
|
||||||
dir: "nativetest",
|
baseInstaller: baseInstaller{
|
||||||
dir64: "nativetest64",
|
dir: "nativetest",
|
||||||
data: true,
|
dir64: "nativetest64",
|
||||||
|
data: true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
return module
|
return module
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user