Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/test_fd_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,11 @@ TEST_CASE("test fd_table - send fd - basic") {
i, 0);
REQUIRE(r == 0);
}
co_await chan.pop();
};

auto func2 = [&]() -> condy::Coro<void> {
co_await chan.push(std::monostate{});
co_await chan.push(std::monostate{});
co_return;
};
Expand Down Expand Up @@ -153,9 +155,11 @@ TEST_CASE("test fd_table - send fd - auto allocate") {
runtime2.fd_table(), i, CONDY_FILE_INDEX_ALLOC, 0);
REQUIRE(r == i);
}
co_await chan.pop();
};

auto func2 = [&]() -> condy::Coro<void> {
co_await chan.push(std::monostate{});
co_await chan.push(std::monostate{});
co_return;
};
Expand Down
Loading