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

Commit 1c6bbc01 authored by Gavin Corkery's avatar Gavin Corkery Committed by Automerger Merge Worker
Browse files

Merge changes from topic "bugreporting-aosp-sync" am: e3330792 am:...

Merge changes from topic "bugreporting-aosp-sync" am: e3330792 am: a6f23701 am: 5fccda2f am: a205e4c7

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1465983

Change-Id: I9c2b7d758cb043fd9565397cbdfad866ed51d88a
parents 3b45f3e8 a205e4c7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -239,10 +239,10 @@ TEST_F(ZippedBugreportGenerationTest, IsGeneratedWithoutErrors) {
    EXPECT_EQ(access(getZipFilePath().c_str(), F_OK), 0);
}

TEST_F(ZippedBugreportGenerationTest, Is3MBMBinSize) {
TEST_F(ZippedBugreportGenerationTest, Is1MBMBinSize) {
    struct stat st;
    EXPECT_EQ(stat(getZipFilePath().c_str(), &st), 0);
    EXPECT_GE(st.st_size, 3000000 /* 3MB */);
    EXPECT_GE(st.st_size, 1000000 /* 1MB */);
}

TEST_F(ZippedBugreportGenerationTest, TakesBetween30And300Seconds) {