Files
compute-runtime/unit_tests/api/cl_create_user_event_tests_mt.cpp
Artur Harasimiuk 40146291ad Update copyright headers
Updating files modified in 2018 only. Older files remain with old style
copyright header

Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2018-09-20 18:02:35 +02:00

51 lines
1.2 KiB
C++

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "cl_api_tests.h"
#include "runtime/context/context.h"
using namespace OCLRT;
typedef api_tests clCreateUserEventMtTests;
namespace ULT {
TEST_F(clCreateUserEventMtTests, WaitForUserEventThatIsCLSubmittedStalls) {
auto userEvent = clCreateUserEvent(
pContext,
&retVal);
std::atomic<bool> ThreadStarted(false);
std::atomic<bool> WaitForEventsCompleted(false);
int counter = 0;
int Deadline = 2000;
std::thread t([&]() {
ThreadStarted = true;
clWaitForEvents(1, &userEvent);
WaitForEventsCompleted = true;
});
//wait for the thread to start
while (!ThreadStarted)
;
//now wait a while.
while (!WaitForEventsCompleted && counter++ < Deadline)
;
ASSERT_EQ(WaitForEventsCompleted, false) << "WaitForEvents returned while user event is not signaled!";
//set event to CL_COMPLETE
retVal = clSetUserEventStatus(userEvent, CL_COMPLETE);
t.join();
ASSERT_EQ(WaitForEventsCompleted, true);
retVal = clReleaseEvent(userEvent);
EXPECT_EQ(CL_SUCCESS, retVal);
}
} // namespace ULT