Skip to content

Commit 5d7cd39

Browse files
Treehugger Robotandroid-build-merge-worker-robot
authored andcommitted
Merge "binderSafeInterfaceTest: another quick flake fix" into main am: e8f9d03 am: 4bb9fd0
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3436784 Change-Id: I74b4613aea9fdce10796ff1fbd31deb5ea41d9b3 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
2 parents edd0db8 + 4bb9fd0 commit 5d7cd39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/binder/tests/binderSafeInterfaceTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ TEST_F(SafeInterfaceTest, TestCallMeBack) {
789789
std::optional<int32_t> waitForCallback() {
790790
std::unique_lock<decltype(mMutex)> lock(mMutex);
791791
bool success =
792-
mCondition.wait_for(lock, 100ms, [&]() { return static_cast<bool>(mValue); });
792+
mCondition.wait_for(lock, 1000ms, [&]() { return static_cast<bool>(mValue); });
793793
return success ? mValue : std::nullopt;
794794
}
795795

0 commit comments

Comments
 (0)