rocrtst: Disable FreeQueueRingBufferTest temporarily

This test is disabled until kernel patches are added to handle invalid
user actions gracefully. These patches validate and block operations
like freeing active queue buffers, which can corrupt the driver's state
if unhandled.

Currently, such operations result in driver state corruption, leading
to segmentation faults and subsequent failures during runtime.

Change-Id: If4c321a14df950a639141fc96048889659c14477
This commit is contained in:
Shweta Khatri
2024-11-22 14:37:12 -05:00
rodzic 816af44b05
commit 2cf3813f9f
+5 -1
Wyświetl plik
@@ -412,7 +412,11 @@ TEST(rocrtstNeg, Memory_Negative_Tests) {
RunCustomTestProlog(&mt);
mt.ZeroMemoryAllocateTest();
mt.MaxMemoryAllocateTest();
mt.FreeQueueRingBufferTest();
// Disabled temporarily - Renable this test only
// on recent GPUs - gfx94x+
// mt.FreeQueueRingBufferTest();
RunCustomTestEpilog(&mt);
}