TBB executor for GAPI: fix race consition in Async test
authorAnton Potapov <anton.potapov@intel.com>
Tue, 1 Dec 2020 08:12:36 +0000 (11:12 +0300)
committerAnton Potapov <anton.potapov@intel.com>
Tue, 1 Dec 2020 08:12:36 +0000 (11:12 +0300)
The test has race condition, which is addressed by the patch.

The race is next:

    Master thread is calling execute (effectively blocked, waiting for
callback to be called)
    "Async" thread picks up the callback
    Call the callback
    Then sets the variables in test
    After call back is called, master thread is unblocked and may check
the variables (set in point 4 by the "async" thread) earlier then they
actually changed

Changes:

    callback should be called as the last step (after flag variables are
    set), as it effectively unblock the master thread

fixes #18974

modules/gapi/test/executor/gtbbexecutor_internal_tests.cpp

index d793683..bdc3bb2 100644 (file)
@@ -95,9 +95,9 @@ TEST(TBBExecutor, AsyncBasic) {
             if (!slept) {
                 std::this_thread::sleep_for(std::chrono::milliseconds(1));
             }
-            callback();
             callback_called = true;
             master_was_blocked_until_callback_called = (master_is_waiting == true);
+            callback();
     });
 
     auto async_task_body = [&](std::function<void()>&& cb, size_t /*total_order_index*/) {