From 7d53e947504097c8fdfef6206eab0c0c99209b9c Mon Sep 17 00:00:00 2001 From: Philip Yang Date: Mon, 26 Apr 2021 10:31:37 -0400 Subject: [PATCH] kfdtest: skip KFDSVMEvictTest.QueueTest on gfx10 KFDSVMEvictTest.QueueTest shader asm code need update to support gfx10 and gfx9, skip the test to unblock CI test. Change-Id: Id2842127cf5fc98a652afa82035a4b3603bf5c33 Signed-off-by: Philip Yang --- tests/kfdtest/src/KFDSVMEvictTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kfdtest/src/KFDSVMEvictTest.cpp b/tests/kfdtest/src/KFDSVMEvictTest.cpp index c05e460c3d..beedbe7b24 100644 --- a/tests/kfdtest/src/KFDSVMEvictTest.cpp +++ b/tests/kfdtest/src/KFDSVMEvictTest.cpp @@ -371,7 +371,7 @@ TEST_F(KFDSVMEvictTest, QueueTest) { const HsaNodeProperties *pNodeProperties = m_NodeInfo.HsaDefaultGPUNodeProperties(); /* Skip test for chip it doesn't have CWSR, which the test depends on */ - if (m_FamilyId < FAMILY_VI || isTonga(pNodeProperties)) { + if (m_FamilyId < FAMILY_VI || isTonga(pNodeProperties) || m_FamilyId >= FAMILY_NV) { LOG() << std::hex << "Test is skipped for family ID 0x" << m_FamilyId << std::endl; return; }