The /odd-limit/at test passes on 13.1 and 14.0 images, but fails on 13.1.
Debugging has not given me any useful hints why this may be the case, so
disable this test on 13.0 for now.
This allows us to drop the ci_test_fatal: "no" override which will ensure
that any FreeBSD regressions are caught.
ci_parallel: "${FDO_CI_CONCURRENT:-2}"
ci_distro: "$BUILD_OS"
ci_suite: "$FDO_DISTRIBUTION_VERSION"
- ci_test_fatal: "no" # One undiagnosed test failure in test-fdpass
script:
# Start the VM and copy our workspace to the VM
- /app/vmctl start
if (f->skip)
return;
+#ifdef __FreeBSD__
+ g_test_message ("Running test on FreeBSD %d...", getosreldate ());
+ if (GPOINTER_TO_INT (data) == 0 && getosreldate () < 1301000)
+ {
+ g_test_skip ("This test fails on FreeBSD < 13.1");
+ return;
+ }
+#endif
+
test_connect (f, TRUE);
dbus_connection_set_max_message_unix_fds (f->left_server_conn, 7);
dbus_connection_set_max_message_unix_fds (f->right_server_conn, 7);