exempt android.hardware.automotive. AIDL HALs

For consistency w/ HIDL for now and to fix ToT tests.

Bug: N/A
Test: TH
Change-Id: I5eaafd9d301ad73243efe08674cbd48e54172f75
diff --git a/tests/hal/hal_implementation_test.cpp b/tests/hal/hal_implementation_test.cpp
index 95392a0..07162b6 100644
--- a/tests/hal/hal_implementation_test.cpp
+++ b/tests/hal/hal_implementation_test.cpp
@@ -159,7 +159,8 @@
 
 static bool isAospAidlInterface(const std::string& name) {
     return base::StartsWith(name, "android.") &&
-        !base::StartsWith(name, "android.automotive.");
+        !base::StartsWith(name, "android.automotive.") &&
+        !base::StartsWith(name, "android.hardware.automotive.");
 }
 
 static std::set<std::string> allAidlManifestInterfaces() {