From 827e36d1b8830e3219abbfc882a18861f6f27a48 Mon Sep 17 00:00:00 2001 From: Chris Freehill Date: Tue, 13 Feb 2018 17:37:25 -0600 Subject: [PATCH] Reenable Memory_Max_Mem test Change-Id: I2da50f886cd8d28d0f9ad8b8f77cfa13d392bf01 [ROCm/ROCR-Runtime commit: 81c923b26fba6240c6e13e48d1749fd38964a4a3] --- .../rocr-runtime/rocrtst/suites/test_common/main.cc | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/projects/rocr-runtime/rocrtst/suites/test_common/main.cc b/projects/rocr-runtime/rocrtst/suites/test_common/main.cc index c9f54b9cf6..27aa7313d0 100755 --- a/projects/rocr-runtime/rocrtst/suites/test_common/main.cc +++ b/projects/rocr-runtime/rocrtst/suites/test_common/main.cc @@ -134,10 +134,6 @@ TEST(rocrtst, Test_Example) { RunGenericTest(&tst); } -// Temporarily disable this test until hsa_init()/hsa_shut_down() works -// simultaneously in 2 different processes (SWDEV-134085); The test can be run -// by itself to test IPC and avoid the negative consequnces of the defect -// mentioned. To do this, use the --gtest_also_run_disabled_tests flag. TEST(rocrtstFunc, IPC) { IPCTest ipc; RunGenericTest(&ipc); @@ -150,10 +146,8 @@ TEST(rocrtstFunc, MemoryAccessTests) { mt.GPUAccessToCPUMemoryTest(); RunCustomTestEpilog(&mt); } -// Temporarily disable this test until hsa_shut_down() is (probably not the -// same as with the IPC test above) is addressed. To override the disable, -// run with --gtest-also_run_disabled_tests flag. -TEST(rocrtstFunc, DISABLED_Memory_Max_Mem) { + +TEST(rocrtstFunc, Memory_Max_Mem) { MemoryTest mt; RunCustomTestProlog(&mt);