CHECK -> CHECK_EQ copy pasta

Hey did I start this? We can take a little bit better errors. :)

Bug: N/A
Test: N/A
Change-Id: I0e96f7f49dae9968904333da9b8269694058c11c
This commit is contained in:
Steven Moreland 2021-12-14 01:45:47 +00:00
parent 391a772300
commit ffb03995e6
16 changed files with 17 additions and 17 deletions

View file

@ -28,7 +28,7 @@ int main() {
const std::string instance = std::string() + AuthSecret::descriptor + "/default"; const std::string instance = std::string() + AuthSecret::descriptor + "/default";
binder_status_t status = AServiceManager_addService(authsecret->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(authsecret->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return -1; // Should never be reached return -1; // Should never be reached

View file

@ -31,7 +31,7 @@ int main() {
const std::string instance = std::string() + AudioControl::descriptor + "/default"; const std::string instance = std::string() + AudioControl::descriptor + "/default";
binder_status_t status = binder_status_t status =
AServiceManager_addService(audioControl->asBinder().get(), instance.c_str()); AServiceManager_addService(audioControl->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
std::shared_ptr<PowerPolicyClient> powerPolicyClient = std::shared_ptr<PowerPolicyClient> powerPolicyClient =
::ndk::SharedRefBase::make<PowerPolicyClient>(audioControl); ::ndk::SharedRefBase::make<PowerPolicyClient>(audioControl);

View file

@ -29,7 +29,7 @@ int main() {
const std::string instance = std::string(Face::descriptor) + "/default"; const std::string instance = std::string(Face::descriptor) + "/default";
binder_status_t status = AServiceManager_addService(hal->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(hal->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reach return EXIT_FAILURE; // should not reach

View file

@ -29,7 +29,7 @@ int main() {
const std::string instance = std::string(Fingerprint::descriptor) + "/default"; const std::string instance = std::string(Fingerprint::descriptor) + "/default";
binder_status_t status = AServiceManager_addService(hal->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(hal->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reach return EXIT_FAILURE; // should not reach

View file

@ -29,7 +29,7 @@ int main() {
const std::string instance = std::string() + Dumpstate::descriptor + "/default"; const std::string instance = std::string() + Dumpstate::descriptor + "/default";
binder_status_t status = binder_status_t status =
AServiceManager_registerLazyService(dumpstate->asBinder().get(), instance.c_str()); AServiceManager_registerLazyService(dumpstate->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // Unreachable return EXIT_FAILURE; // Unreachable

View file

@ -42,7 +42,7 @@ int main() {
const std::string instance = std::string() + Gnss::descriptor + "/default"; const std::string instance = std::string() + Gnss::descriptor + "/default";
binder_status_t status = binder_status_t status =
AServiceManager_addService(gnssAidl->asBinder().get(), instance.c_str()); AServiceManager_addService(gnssAidl->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
sp<IGnss> gnss = new GnssHidlHal(gnssAidl); sp<IGnss> gnss = new GnssHidlHal(gnssAidl);
configureRpcThreadpool(1, true /* will join */); configureRpcThreadpool(1, true /* will join */);

View file

@ -43,7 +43,7 @@ int main(int /*argc*/, char* argv[]) {
const std::string instance = std::string() + IdentityCredentialStore::descriptor + "/default"; const std::string instance = std::string() + IdentityCredentialStore::descriptor + "/default";
binder_status_t status = AServiceManager_addService(store->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(store->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reach return EXIT_FAILURE; // should not reach

View file

@ -28,7 +28,7 @@ int main() {
const std::string instance = std::string() + Lights::descriptor + "/default"; const std::string instance = std::string() + Lights::descriptor + "/default";
binder_status_t status = AServiceManager_addService(lights->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(lights->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reached return EXIT_FAILURE; // should not reached

View file

@ -29,7 +29,7 @@ int main() {
const std::string instance = std::string() + Memtrack::descriptor + "/default"; const std::string instance = std::string() + Memtrack::descriptor + "/default";
binder_status_t status = binder_status_t status =
AServiceManager_addService(memtrack->asBinder().get(), instance.c_str()); AServiceManager_addService(memtrack->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // Unreachable return EXIT_FAILURE; // Unreachable

View file

@ -28,7 +28,7 @@ int main() {
const std::string instance = std::string() + OemLock::descriptor + "/default"; const std::string instance = std::string() + OemLock::descriptor + "/default";
binder_status_t status = AServiceManager_addService(oemlock->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(oemlock->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return -1; // Should never be reached return -1; // Should never be reached

View file

@ -28,7 +28,7 @@ int main() {
const std::string instance = std::string() + Power::descriptor + "/default"; const std::string instance = std::string() + Power::descriptor + "/default";
binder_status_t status = AServiceManager_addService(vib->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(vib->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reach return EXIT_FAILURE; // should not reach

View file

@ -73,7 +73,7 @@ int main() {
const std::string instance = std::string() + PowerStats::descriptor + "/default"; const std::string instance = std::string() + PowerStats::descriptor + "/default";
binder_status_t status = AServiceManager_addService(p->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(p->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reach return EXIT_FAILURE; // should not reach

View file

@ -34,7 +34,7 @@ int main() {
auto re = ndk::SharedRefBase::make<RebootEscrow>(rebootEscrowDevicePath); auto re = ndk::SharedRefBase::make<RebootEscrow>(rebootEscrowDevicePath);
const std::string instance = std::string() + RebootEscrow::descriptor + "/default"; const std::string instance = std::string() + RebootEscrow::descriptor + "/default";
binder_status_t status = AServiceManager_addService(re->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(re->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; return EXIT_FAILURE;

View file

@ -39,7 +39,7 @@ std::shared_ptr<T> addService(Args&&... args) {
LOG(INFO) << "adding keymint service instance: " << instanceName; LOG(INFO) << "adding keymint service instance: " << instanceName;
binder_status_t status = binder_status_t status =
AServiceManager_addService(ser->asBinder().get(), instanceName.c_str()); AServiceManager_addService(ser->asBinder().get(), instanceName.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
return ser; return ser;
} }

View file

@ -31,14 +31,14 @@ int main() {
auto vib = ndk::SharedRefBase::make<Vibrator>(); auto vib = ndk::SharedRefBase::make<Vibrator>();
const std::string vibName = std::string() + Vibrator::descriptor + "/default"; const std::string vibName = std::string() + Vibrator::descriptor + "/default";
binder_status_t status = AServiceManager_addService(vib->asBinder().get(), vibName.c_str()); binder_status_t status = AServiceManager_addService(vib->asBinder().get(), vibName.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
// make the vibrator manager service with a different vibrator // make the vibrator manager service with a different vibrator
auto managedVib = ndk::SharedRefBase::make<Vibrator>(); auto managedVib = ndk::SharedRefBase::make<Vibrator>();
auto vibManager = ndk::SharedRefBase::make<VibratorManager>(std::move(managedVib)); auto vibManager = ndk::SharedRefBase::make<VibratorManager>(std::move(managedVib));
const std::string vibManagerName = std::string() + VibratorManager::descriptor + "/default"; const std::string vibManagerName = std::string() + VibratorManager::descriptor + "/default";
status = AServiceManager_addService(vibManager->asBinder().get(), vibManagerName.c_str()); status = AServiceManager_addService(vibManager->asBinder().get(), vibManagerName.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return EXIT_FAILURE; // should not reach return EXIT_FAILURE; // should not reach

View file

@ -28,7 +28,7 @@ int main() {
const std::string instance = std::string() + Weaver::descriptor + "/default"; const std::string instance = std::string() + Weaver::descriptor + "/default";
binder_status_t status = AServiceManager_addService(weaver->asBinder().get(), instance.c_str()); binder_status_t status = AServiceManager_addService(weaver->asBinder().get(), instance.c_str());
CHECK(status == STATUS_OK); CHECK_EQ(status, STATUS_OK);
ABinderProcess_joinThreadPool(); ABinderProcess_joinThreadPool();
return -1; // Should never be reached return -1; // Should never be reached