Skip to content
Snippets Groups Projects
Commit 67d57c1f authored by Wissam Boussella's avatar Wissam Boussella Committed by Maxence Naud
Browse files

"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"
parent 0bb298f6
No related branches found
No related tags found
1 merge request!336Tests adapt to backend
...@@ -183,6 +183,7 @@ ...@@ -183,6 +183,7 @@
REQUIRE_NOTHROW(sched.generateScheduling()); REQUIRE_NOTHROW(sched.generateScheduling());
REQUIRE_NOTHROW(sched.generateMemory()); REQUIRE_NOTHROW(sched.generateMemory());
REQUIRE_NOTHROW(sched.forward()); REQUIRE_NOTHROW(sched.forward());
FAIL_CHECK("This test is expected to fail due to known issues.");
} }
// Interesting test because used a lot for export // Interesting test because used a lot for export
...@@ -240,9 +241,8 @@ ...@@ -240,9 +241,8 @@
} }
} }
REQUIRE(cpt == 2); REQUIRE(cpt == 2);
FAIL_CHECK("This test is expected to fail due to known issues.");
} }
} // namespace Aidge } // namespace Aidge
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment