FreeBSD 13.1 has been EOL since July 2023, but because there are
apparently no FreeBSD users among the dbus maintainers, nobody noticed.
dbus/dbus#308 is still present in FreeBSD 14.2, so remove the version
check when skipping that particular test.
Signed-off-by: Simon McVittie <smcv@collabora.com>
variables:
BUILD_OS: freebsd
BUILD_ARCH: "x86_64"
- FDO_DISTRIBUTION_VERSION: '13.1'
- FDO_DISTRIBUTION_TAG: "2025-02-27.0-$UPSTREAM_BRANCH"
+ FDO_DISTRIBUTION_VERSION: '14.2'
+ FDO_DISTRIBUTION_TAG: "2025-02-27.1-$UPSTREAM_BRANCH"
FDO_REPO_SUFFIX: "$BUILD_OS/$BUILD_ARCH"
.cmake-common:
#ifdef __FreeBSD__
g_test_message ("Running test on FreeBSD %d...", getosreldate ());
- if (GPOINTER_TO_INT (data) == 0 && getosreldate () < 1400000)
+ if (GPOINTER_TO_INT (data) == 0)
{
- g_test_skip ("This test fails on FreeBSD < 14.0");
+ g_test_skip ("This test fails on FreeBSD");
return;
}
#endif