This commit is contained in:
Vihang Mehta 2025-05-05 02:45:29 +00:00 committed by GitHub
commit 72c5d8e983
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -213,7 +213,14 @@ TEST_F(CTestAuxTable, DISABLED_TestUpdateAuxTableStress)
pGmmULTClientContext->DestroyPageTblMgrObject(mgr);
}
#if defined(__aarch64__)
// aarch64 systems have VAs where the 48th bit is set but don't have the same
// canonize semantics as x86_64 where bits 63-49 need to be the same as bit 48.
// This causes this test to fault, instead we disable it in aarch64.
TEST_F(CTestAuxTable, DISABLED_TestAuxTableContent)
#else
TEST_F(CTestAuxTable, TestAuxTableContent)
#endif
{
GmmPageTableMgr *mgr = pGmmULTClientContext->CreatePageTblMgrObject(&DeviceCBInt, TT_TYPE::AUXTT);