Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e57b3535 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Android (Google) Code Review
Browse files

Merge "liblog: test: android_logger_get_ "kernel" log buffer can be empty" into oc-dev

parents bb958f0f 558f2a16
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
#include <android-base/stringprintf.h>
#include <android/log.h>  // minimal logging API
#include <gtest/gtest.h>
#include <log/log_properties.h>
// Test the APIs in this standalone include file
#include <log/log_read.h>
// Do not use anything in log/log_time.h despite side effects of the above.
@@ -97,8 +98,11 @@ TEST(liblog, android_logger_get_) {
    /* security buffer is allowed to be denied */
    if (strcmp("security", name)) {
      EXPECT_LT(0, get_log_size);
      /* crash buffer is allowed to be empty, that is actually healthy! */
      EXPECT_LE((strcmp("crash", name)) != 0,
      // crash buffer is allowed to be empty, that is actually healthy!
      // kernel buffer is allowed to be empty on "user" builds
      EXPECT_LE(  // boolean 1 or 0 depending on expected content or empty
          !!((strcmp("crash", name) != 0) &&
             ((strcmp("kernel", name) != 0) || __android_log_is_debuggable())),
          android_logger_get_log_readable_size(logger));
    } else {
      EXPECT_NE(0, get_log_size);