diff options
| author | 2025-01-03 14:09:56 -0800 | |
|---|---|---|
| committer | 2025-01-03 14:09:56 -0800 | |
| commit | e8f9d0355c812ea666a9efdfa179fbe1caa65f5b (patch) | |
| tree | c08cd23729663e14530c9c22b7070334923716fa | |
| parent | b53ef230f2f9d9e2e16ddf137ff5c208514c7bfd (diff) | |
| parent | b754f1c33d632fded952108f618df4b3fb12cd80 (diff) | |
Merge "binderSafeInterfaceTest: another quick flake fix" into main
| -rw-r--r-- | libs/binder/tests/binderSafeInterfaceTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/tests/binderSafeInterfaceTest.cpp b/libs/binder/tests/binderSafeInterfaceTest.cpp index 849dc7c4d5..7d1556e7d2 100644 --- a/libs/binder/tests/binderSafeInterfaceTest.cpp +++ b/libs/binder/tests/binderSafeInterfaceTest.cpp @@ -789,7 +789,7 @@ TEST_F(SafeInterfaceTest, TestCallMeBack) { 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; } |