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

Commit 239a9e86 authored by Parth Sane's avatar Parth Sane Committed by Automerger Merge Worker
Browse files

Merge "Fix Libbinder RemoveFromCacheOnServerDeath test" into main am: 2347908d am: 5a7b1602

parents b9b45af8 5a7b1602
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -137,9 +137,9 @@ TEST_F(LibbinderCacheTest, RemoveFromCacheOnServerDeath) {
    ASSERT_EQ(binder1, result);

    // Kill the server, this should remove from cache.
    foo.killServer(binder1);
    pid_t pid;
    ASSERT_EQ(OK, binder1->getDebugPid(&pid));
    foo.killServer(binder1);
    system(("kill -9 " + std::to_string(pid)).c_str());

    sp<IBinder> binder2 = sp<BBinder>::make();