// Copyright 2021 Google LLC. All Rights Reserved. This file and proprietary // source code may only be used and distributed under the Widevine License // Agreement. #include #include "gtest/gtest.h" #include "log.h" int main(int argc, char** argv) { LOGI("Running Android CDM tests"); testing::InitGoogleTest(&argc, argv); const int status = RUN_ALL_TESTS(); LOGD("CDM test complete with status %d", status); exit(status); // Explicit call to exit() is required for code coverage. return status; }