From 67ebf978d4a7feaa089661dfd0f7fea119f22f6c Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Wed, 18 Dec 2024 11:25:11 +0100 Subject: [PATCH] Soft fail rlist_test on AIX For some reason rlist_test fails in AIX unit tests. The test seems to `abort()` while it should trigger an assert so that `expect_assert_failure()` can catch it. For some reason this is not happening anymore. ``` rlist.c:135: Programming Error: Internal error: Rval contains type f instead of expected scalar ``` I created a ticket (CFE-4473) to follow-up on this. Ticket: None Changelog: None Signed-off-by: Lars Erik Wik --- tests/unit/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/unit/Makefile.am b/tests/unit/Makefile.am index cc4c0cb0bb..5349375bad 100644 --- a/tests/unit/Makefile.am +++ b/tests/unit/Makefile.am @@ -179,6 +179,10 @@ XFAIL_TESTS += mon_processes_test XFAIL_TESTS += rlist_test endif +if AIX +XFAIL_TESTS = rlist_test +endif + if HPUX XFAIL_TESTS = mon_load_test # Redmine #3569 endif