-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
GNU coreutils Test Coverage Tracking
Failing GNU tests as of 2026-01-20 | Test Coverage Dashboard
Overview
With the number of failing tests now small enough to track individually, this document provides detailed descriptions of each remaining test failure and the next steps needed to achieve full GNU compatibility. Theres a bunch of duplicate PR's for the same tests in the PR queue now and I'm hoping this will allow us to consolidate our efforts.
I am also hoping to separate the tests that are incompatible because they either intercept glibc calls or call gdb on specific lines of source code since we are unable to fix those tests and it wouldn't be good to track compatibility of those tests.
FAILED
[ ] cp/cp-a-selinux.sh - PR #10207
GNU Test | Fix cp -a SELinux xattr handling and -z flag for folders
[ ] date/date-debug.sh
GNU Test | Debug output for date parsing
[ ] date/date-ethiopia.sh
GNU Test | Ethiopian calendar translation support
Note: PR #9661 was an attempt but has been closed.
[ ] date/date-iran.sh
GNU Test | Iranian/Persian calendar translation support
Note: PR #9661 was an attempt but has been closed.
[ ] date/date-thailand.sh
GNU Test | Thai calendar translation support
Note: PR #9661 was an attempt but has been closed.
[ ] date/date.pl
GNU Test | Comprehensive date parsing tests
[ ] ls/stat-free-symlinks.sh - PR #8728
GNU Test | Iterative loop for ls recursive directory search (prevents stack overflow)
[ ] misc/close-stdout.sh
GNU Test | Proper handling of closed stdout
[ ] misc/stdbuf.sh
GNU Test | Line/block buffering with fifos
[ ] misc/write-errors.sh
GNU Test | Write error handling and reporting
[ ] numfmt/numfmt.pl
GNU Test | Number formatting comprehensive tests
[ ] pr/pr-tests.pl
GNU Test | Page formatting tests
[ ] rm/one-file-system.sh - PR #7569
GNU Test | --one-file-system and --preserve-root=all implementation
[ ] sort/sort-h-thousands-sep.sh - PR #9848
GNU Test | Human-readable sort with thousands separators
[ ] sort/sort-month.sh - PR #9722
GNU Test | Locale-aware month parsing (ICU), handles "janv." and Latin-1
[ ] tail/follow-name.sh
GNU Test | Follow renamed/recreated files
[ ] tail/inotify-rotate-resources.sh
GNU Test | Inotify resource handling during log rotation
SKIPPED
[ ] id/gnu-zero-uids.sh
GNU Test | Handling of UID 0
[ ] tail/inotify-dir-recreate.sh
GNU Test | Directory recreation with inotify
[ ] timeout/timeout-group.sh
GNU Test | sigtimedwait() instead of 100ms polling (100ms → 1ms)
INCOMPATIBLE
Tests that use LD_PRELOAD to intercept glibc calls or gdb breakpoints. If we don't use the same internal calls, we will have to patch these tests.
df/skip-duplicates.sh (LD_PRELOAD)
GNU Test | Intercepts glibc to inject duplicate mount entries
nproc/nproc-quota.sh (LD_PRELOAD)
GNU Test | Intercepts glibc to simulate CPU quota
rm/r-root.sh (LD_PRELOAD + gdb)
GNU Test | Uses gdb breakpoints and LD_PRELOAD for safety net
rm/rm-readdir-fail.sh (LD_PRELOAD) - PR #9604
GNU Test | Intercepts readdir to simulate failures
PR #9604 wraps libc calls to handle LD_PRELOAD tests.
tail/inotify-race.sh (gdb) - PR #9908
GNU Test | Uses gdb breakpoints to trigger race conditions
PR #9908 patches the test to use Rust gdb breakpoints (breaking on watcher_rx.watch_with_parent in watch.rs).
tail/inotify-race2.sh (gdb) - PR #9908
GNU Test | Uses gdb breakpoints to trigger race conditions
PR #9908 patches the test to use Rust gdb breakpoints (breaking on watcher_rx.watch_with_parent in watch.rs).
ERROR
[ ] misc/usage_vs_getopt.sh - PR #9869
GNU Test | Usage message consistency with getopt
The coreutils multicall binary doesn't use clap for argument parsing, so unrecognized options like --unknown were outputting "function/utility not found" instead of "unrecognized option". PR #9869 fixes this by detecting option-like arguments.