commit | 4bb9fd02dbf5d81710132f7fbad86f5ada2e5eae | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Fri Jan 03 14:33:39 2025 -0800 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Jan 03 14:33:39 2025 -0800 |
tree | c08cd23729663e14530c9c22b7070334923716fa | |
parent | a16503e470e25c239a94463e95b7e7d5de15b3b5 [diff] | |
parent | e8f9d0355c812ea666a9efdfa179fbe1caa65f5b [diff] |
Merge "binderSafeInterfaceTest: another quick flake fix" into main am: e8f9d0355c Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3436784 Change-Id: I047fe4f97974e0b6f59a482c3b6646e642f1b88a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/libs/binder/tests/binderSafeInterfaceTest.cpp b/libs/binder/tests/binderSafeInterfaceTest.cpp index 849dc7c..7d1556e 100644 --- a/libs/binder/tests/binderSafeInterfaceTest.cpp +++ b/libs/binder/tests/binderSafeInterfaceTest.cpp
@@ -789,7 +789,7 @@ std::optional<int32_t> waitForCallback() { std::unique_lock<decltype(mMutex)> lock(mMutex); bool success = - mCondition.wait_for(lock, 100ms, [&]() { return static_cast<bool>(mValue); }); + mCondition.wait_for(lock, 1000ms, [&]() { return static_cast<bool>(mValue); }); return success ? mValue : std::nullopt; }