Skip to content

Commit b754f1c

Browse files
author
Steven Moreland
committed
binderSafeInterfaceTest: another quick flake fix
P.S. we should delete safe interface and move everything to using AIDL-generated interfaces. It doesn't support all the things AIDL does, and we don't want so many ways of doing things. Change-Id: I92c97e458314c0c85ec9ca8eab2c1552abec8ca6 Fixes: 387346410 Test: TH
1 parent 38a4ab9 commit b754f1c

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)