Disable arm32 asan for VtsHalNeuralnetworksV1_1TargetTest

Bug: http://b/74200014

Building this module with asan triggers an internal error in gold.

Test: mma SANITIZE_TARGET=address in
hardware/interfaces/neuralnetworks/1.1/vts/functional

Change-Id: I3ce5352a6c86c8dca257d35af06989e57f871749
This commit is contained in:
Pirama Arumuga Nainar
2018-03-06 11:23:53 -08:00
parent c2b7f42d7d
commit cca38c56f4

View File

@@ -36,4 +36,13 @@ cc_test {
"libneuralnetworks_generated_test_harness_headers",
"libneuralnetworks_generated_tests",
],
// Bug: http://b/74200014 - Disable arm32 asan since it triggers internal
// error in ld.gold.
arch: {
arm: {
sanitize: {
never: true,
},
},
},
}