From 6cf941c8306ee35ccdc349f99ebf632c1a7f7a28 Mon Sep 17 00:00:00 2001 From: Rahul Manocha Date: Mon, 12 Aug 2024 08:58:16 -0700 Subject: [PATCH] SWDEV-454315 - Disable test section that segfaults on windows Change-Id: Idaac99c433120d98646417318258bfb375d2f367 --- catch/unit/atomics/bitwise_common.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catch/unit/atomics/bitwise_common.hh b/catch/unit/atomics/bitwise_common.hh index dfd9d96148..021bce3f9b 100644 --- a/catch/unit/atomics/bitwise_common.hh +++ b/catch/unit/atomics/bitwise_common.hh @@ -342,12 +342,13 @@ void SingleDeviceSingleKernelTest(const unsigned int width, const unsigned int p } } } - +#ifdef __linux__ SECTION("Shared memory") { params.blocks = dim3(1); params.alloc_type = LinearAllocs::hipMalloc; TestCore(params); } +#endif } template