SWDEV-347670 - Enable GPU StreamWrite and StreamWait tests on Windows (#3031)
This patch skips Unit_hipStreamValue_*_Blocking test cases because of a soft hang Stream write and stream wait passing tests can be enabled in the device attribute. Unit_hipStreamValue_*_Blocking tests will be enabled when the hang is fixed Change-Id: Ieea831162208c4ec172b35a0421c66f6b1a21ed7
This commit is contained in:
committed by
GitHub
parent
acf7e3580b
commit
eceb699ddb
@@ -91,9 +91,13 @@ TEST_CASE("Unit_hipEventIpc") {
|
||||
hipEvent_t ipc_event;
|
||||
hipError_t err = hipIpcOpenEventHandle(&ipc_event, ipc_handle);
|
||||
|
||||
#if HT_WIN
|
||||
// always different process Id on Windows
|
||||
HIP_CHECK(err);
|
||||
#else
|
||||
// hipIpcOpenEventHandle() should be called in a different process, hence it should fail here
|
||||
REQUIRE(err == hipErrorInvalidContext);
|
||||
|
||||
#endif
|
||||
HIP_CHECK(hipEventDestroy(start));
|
||||
HIP_CHECK(hipEventDestroy(stop));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user