summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2022-09-21 08:33:33 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2022-09-21 09:01:56 +0000
commit93203e95248c49dd8dcc315384ae100f4a9f3d11 (patch)
tree8c578592780da8eb9954eef344ecb511c8027323 /test
parent546617d23cb454a2625d1974db039ffd51a2165a (diff)
gitlab-ci: update FreeBSD CI image to 13.1
FreeBSD 13.0 has reached EOL and it appears packages are built against a newer baseline now, so we end up with missing symbol errors: ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/lib/libpython3.9.so.1.0 not found It also appears that the fdpass test still fails on 13.1, so update the condition to less than 14.0
Diffstat (limited to 'test')
-rw-r--r--test/fdpass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fdpass.c b/test/fdpass.c
index 2584c693..3786c77d 100644
--- a/test/fdpass.c
+++ b/test/fdpass.c
@@ -754,9 +754,9 @@ test_odd_limit (Fixture *f,
#ifdef __FreeBSD__
g_test_message ("Running test on FreeBSD %d...", getosreldate ());
- if (GPOINTER_TO_INT (data) == 0 && getosreldate () < 1301000)
+ if (GPOINTER_TO_INT (data) == 0 && getosreldate () < 1400000)
{
- g_test_skip ("This test fails on FreeBSD < 13.1");
+ g_test_skip ("This test fails on FreeBSD < 14.0");
return;
}
#endif