Source release 18.1.0

This commit is contained in:
John "Juce" Bruce
2023-06-23 15:45:08 -07:00
parent 2baa7c6e2b
commit b2c35151ad
2074 changed files with 196004 additions and 427059 deletions

View File

@@ -35,6 +35,10 @@ int main(int argc, char** argv) {
Cdm::IClock* const clock = g_host;
Cdm::ITimer* const timer = g_host;
const int test_results = Main(storage, clock, timer, argc, argv);
// Partners who prefer their logs to go somewhere other than stderr may want
// to replace this implementation.
Cdm::ILogger* const logger = &g_stderr_logger;
const int test_results = Main(storage, clock, timer, logger, argc, argv);
return test_results;
}