bionic: Disable arm32 cpu_target_featuers test
Some arm32 devices may not have ASE/CRC32 still (or they may,
but may not be able to use these features).
We don't want to break them until we can figure out how to
properly limit the breakage to true positives.
Bug: 369186774
Test: Presubmit
Change-Id: Id37395475838fc9424fb857bb66ce9f7a8567ff2
diff --git a/tests/cpu_target_features_test.cpp b/tests/cpu_target_features_test.cpp
index 3458bca..d773772 100644
--- a/tests/cpu_target_features_test.cpp
+++ b/tests/cpu_target_features_test.cpp
@@ -54,15 +54,3 @@
GTEST_SKIP() << "Not targeting an aarch64 architecture.";
#endif
}
-
-TEST(cpu_target_features, has_expected_arm_compiler_values) {
-#if defined(__arm__)
- ExecTestHelper eth;
- char* const argv[] = {nullptr};
- const auto invocation = [&] { execvp("cpu-target-features", argv); };
- eth.Run(invocation, 0, "(^|\n)__ARM_FEATURE_AES=1($|\n)");
- eth.Run(invocation, 0, "(^|\n)__ARM_FEATURE_CRC32=1($|\n)");
-#else
- GTEST_SKIP() << "Not targeting an arm architecture.";
-#endif
-}