1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

build: eliminate build warnings on Ubuntu 20.04/16.04

This commit is contained in:
Alexander Alekhin
2022-12-20 06:36:01 +00:00
parent da43778c1f
commit 3f7ec99166
4 changed files with 9 additions and 6 deletions
@@ -50,7 +50,7 @@ TEST(TBBExecutor, Basic) {
});
q.push(&n);
execute(q);
EXPECT_EQ(true, executed);
EXPECT_TRUE(executed);
}
TEST(TBBExecutor, SerialExecution) {
@@ -117,8 +117,8 @@ TEST(TBBExecutor, AsyncBasic) {
async_thread.join();
EXPECT_EQ(true, callback_called);
EXPECT_EQ(true, master_was_blocked_until_callback_called);
EXPECT_TRUE(callback_called);
EXPECT_TRUE(master_was_blocked_until_callback_called);
}
TEST(TBBExecutor, Dependencies) {