From 0a62325b20751106031d3ac96fea14f28dc6c24c Mon Sep 17 00:00:00 2001
From: Wissam Boussella <wissam.boussella@cea.fr>
Date: Tue, 18 Feb 2025 16:49:16 +0100
Subject: [PATCH] "Add FailCheck for known failing tests

Added FAIL_CHECK to indicate that the following test cases are expected to fail due to known issues:
- AdaptToBackend with MetaOp
- AdaptToBackend with MetaOp and constantFolding"
---
 unit_tests/recipes/Test_AdaptToBackend.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/unit_tests/recipes/Test_AdaptToBackend.cpp b/unit_tests/recipes/Test_AdaptToBackend.cpp
index 2face8b91..63d13de5a 100644
--- a/unit_tests/recipes/Test_AdaptToBackend.cpp
+++ b/unit_tests/recipes/Test_AdaptToBackend.cpp
@@ -183,6 +183,7 @@
     REQUIRE_NOTHROW(sched.generateScheduling());
     REQUIRE_NOTHROW(sched.generateMemory());
     REQUIRE_NOTHROW(sched.forward());
+    FAIL_CHECK("This test is expected to fail due to known issues.");
  }
 
 //  Interesting test because used a lot for export
@@ -240,9 +241,8 @@
         }
     }
     REQUIRE(cpt == 2);
+    FAIL_CHECK("This test is expected to fail due to known issues.");
  }
  
- 
- 
  }  // namespace Aidge
  
\ No newline at end of file
-- 
GitLab