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:
ROCm CI Service Account
2022-11-01 10:38:38 +05:30
committed by GitHub
parent acf7e3580b
commit eceb699ddb
3 changed files with 41 additions and 3 deletions
+5 -1
View File
@@ -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));