From 44e6cc3e7adf8cc05256bec7206ceed014d69235 Mon Sep 17 00:00:00 2001 From: Jaydeep Patel Date: Thu, 4 Jul 2024 05:41:15 +0000 Subject: [PATCH] SWDEV-462616 - Sample 19 is disabled temporarily due to ASAN failure. Change-Id: I6528095909da1f91dbe7383752deca780a38a231 [ROCm/hip-tests commit: ba83484a8dfa435326b4049e215c56ddee802c67] --- .../samples/2_Cookbook/19_cmake_lang/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/projects/hip-tests/samples/2_Cookbook/19_cmake_lang/CMakeLists.txt b/projects/hip-tests/samples/2_Cookbook/19_cmake_lang/CMakeLists.txt index f6cfc93c3b..b8dc368666 100644 --- a/projects/hip-tests/samples/2_Cookbook/19_cmake_lang/CMakeLists.txt +++ b/projects/hip-tests/samples/2_Cookbook/19_cmake_lang/CMakeLists.txt @@ -1,7 +1,10 @@ # The test must be with CMake 3.18 or above which supports LINK_LANGUAGE that is necessary for # Fortran build. cmake_minimum_required(VERSION 3.18.0) - +if(ENABLE_ADDRESS_SANITIZER) + message(STATUS "This fortran sample is temporarily disabled due to SWDEV-462616.") + return() +endif() project(cmake_lang_test CXX Fortran) if(UNIX)