]> Savannah Git Hosting - gnulib.git/commitdiff
tests: Mark tests that fail on NetBSD as expected failures.
authorBruno Haible <bruno@clisp.org>
Fri, 17 May 2024 21:08:00 +0000 (23:08 +0200)
committerBruno Haible <bruno@clisp.org>
Fri, 17 May 2024 21:08:00 +0000 (23:08 +0200)
* 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.

ChangeLog
modules/dup3-tests
modules/fdutimensat-tests
modules/futimens-tests
modules/utimens-tests
modules/utimensat-tests

index df2944317a7ebfa35c6ea85b461eabfadf35f43d..add0f34488b10e1e6a959468fd636148b6ae6f19 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+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'.
index 7d527717308cd7e404b1b6754eacf6fbbcbe5eef..eff2e21307d479f0d4f1971786c108392e536c55 100644 (file)
@@ -8,9 +8,14 @@ getdtablesize
 msvc-nothrow
 open
 close
+test-xfail
 
 configure.ac:
 
 Makefile.am:
 TESTS += test-dup3
 check_PROGRAMS += test-dup3
+
+if OS_IS_NETBSD
+XFAIL_TESTS += test-dup3
+endif
index c2f0d59f3dea289525bc509872592f3eb58cb91f..29113f0cdb36b24f8afe7775c0ea9e0115258583 100644 (file)
@@ -16,6 +16,7 @@ stdckdint
 timespec
 dup
 utimecmp
+test-xfail
 
 configure.ac:
 
@@ -24,3 +25,7 @@ TESTS += test-fdutimensat
 check_PROGRAMS += test-fdutimensat
 test_fdutimensat_LDADD = $(LDADD) $(CLOCK_TIME_LIB) \
   $(NANOSLEEP_LIB) @LIBINTL@
+
+if OS_IS_NETBSD
+XFAIL_TESTS += test-fdutimensat
+endif
index c6f62d9d3cd02ff073f62ad7728dee44daf51332..7364321cb587a3dbbaced62705814edb0d70f2d6 100644 (file)
@@ -15,6 +15,7 @@ stdckdint
 timespec
 dup
 utimecmp
+test-xfail
 
 configure.ac:
 
@@ -22,3 +23,7 @@ Makefile.am:
 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
index 381139c8ddd3c33e6467e4e434b8e78551dee6c7..3ef54ce36d4742b28f49dfabb8efcad1484b681b 100644 (file)
@@ -16,6 +16,7 @@ stdckdint
 symlink
 timespec
 utimecmp
+test-xfail
 
 configure.ac:
 
@@ -23,3 +24,7 @@ Makefile.am:
 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
index 0ba5e09e02389812e1b6fadc7648f5f29005bca3..720f46e1c7016f7b1bea2d1f1956a1192bbee3da 100644 (file)
@@ -13,6 +13,7 @@ nanosleep
 stdckdint
 timespec
 utimecmp
+test-xfail
 
 configure.ac:
 
@@ -20,3 +21,7 @@ Makefile.am:
 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