Fix template for native benchmark test config

Bug: 112851515
Test: rm libcore/AndroidTest.xml && atest libjavacore-benchmarks
Change-Id: I126550b6a90b06483e3ee1acec07659fa00fa8af
This commit is contained in:
Colin Cross 2018-08-20 13:29:14 -07:00
parent 55e0bf4231
commit 91606c016e
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ func AutoGenNativeTestConfig(ctx android.ModuleContext, prop *string) android.Pa
func AutoGenNativeBenchmarkTestConfig(ctx android.ModuleContext, prop *string) android.Path {
path, autogenPath := testConfigPath(ctx, prop)
if autogenPath != nil {
autogenTemplate(ctx, autogenPath, "${NativeTestConfigTemplate}")
autogenTemplate(ctx, autogenPath, "${NativeBenchmarkTestConfigTemplate}")
}
return path
}