+2024-05-17 Bruno Haible <bruno@clisp.org>
+
+ tests: Mark tests that fail on NetBSD as expected failures.
+ * modules/dup3-tests (Depends-on): Add test-xfail.
+ (Makefile.am): Expect that test-dup3 fails on NetBSD.
+ * modules/fdutimensat-tests (Depends-on): Add test-xfail.
+ (Makefile.am): Expect that test-fdutimensat fails on NetBSD.
+ * modules/futimens-tests (Depends-on): Add test-xfail.
+ (Makefile.am): Expect that test-futimens fails on NetBSD.
+ * modules/utimens-tests (Depends-on): Add test-xfail.
+ (Makefile.am): Expect that test-utimens fails on NetBSD.
+ * modules/utimensat-tests (Depends-on): Add test-xfail.
+ (Makefile.am): Expect that test-utimensat fails on NetBSD.
+
2024-05-17 Bruno Haible <bruno@clisp.org>
New module 'test-xfail'.
timespec
dup
utimecmp
+test-xfail
configure.ac:
check_PROGRAMS += test-fdutimensat
test_fdutimensat_LDADD = $(LDADD) $(CLOCK_TIME_LIB) \
$(NANOSLEEP_LIB) @LIBINTL@
+
+if OS_IS_NETBSD
+XFAIL_TESTS += test-fdutimensat
+endif
timespec
dup
utimecmp
+test-xfail
configure.ac:
TESTS += test-futimens
check_PROGRAMS += test-futimens
test_futimens_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
+
+if OS_IS_NETBSD
+XFAIL_TESTS += test-futimens
+endif
symlink
timespec
utimecmp
+test-xfail
configure.ac:
TESTS += test-utimens
check_PROGRAMS += test-utimens
test_utimens_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
+
+if OS_IS_NETBSD
+XFAIL_TESTS += test-utimens
+endif
stdckdint
timespec
utimecmp
+test-xfail
configure.ac:
TESTS += test-utimensat
check_PROGRAMS += test-utimensat
test_utimensat_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
+
+if OS_IS_NETBSD
+XFAIL_TESTS += test-utimensat
+endif