Skip to content

Commit

Permalink
Development/rpc (#1595)
Browse files Browse the repository at this point in the history
* [Tests/unit/core] : Fix build 'test_rpc'.

- 'Announcements' was removed in 'a3d08b81dc5b192a0952ad8c0ccfc3a94bc08339'

- Missing dependency library specification resulted in undefined symbol.

* [Tests/unit/core] : Ensure valid pointer in 'test_rpc'.
  • Loading branch information
msieben authored May 13, 2024
1 parent a37ff55 commit ae3ff9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tests/unit/core/test_rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ namespace Tests {
// Create remote instance of "IAdder".
Exchange::IAdder * adder = client->Open<Exchange::IAdder>(_T("Adder"));

ASSERT_TRUE(adder != nullptr);

// Perform some arithmatic.
EXPECT_EQ(adder->GetValue(), static_cast<uint32_t>(0));
adder->Add(20);
Expand Down

0 comments on commit ae3ff9e

Please sign in to comment.