ltp icon indicating copy to clipboard operation
ltp copied to clipboard

Linux Test Project (mailing list: https://lists.linux.it/listinfo/ltp)

Results 269 ltp issues
Sort by recently updated
recently updated
newest added

See: commit 611fbeb44a777e5ab54ab3127ec85f72147911d8 Author: Al Viro Date: Thu Aug 22 05:39:32 2024 +0100 selftests:core: test coverage for dup_fd() failure handling in unshare_fd()

missing coverage

See a great description of the different ways how to mount over proc files in: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=d80b065bb172

missing coverage

See: commit d0fe8920cbe42547798fd806f078eeaaba05df18 Author: Christian Brauner Date: Wed Jul 24 15:15:36 2024 +0200 selftests: add F_CREATED_QUERY tests Add simple selftests for fcntl(fd, F_CREATED_QUERY, 0).

missing coverage

For some reason, semctl09 fails unless compiled with -O0. ``` semctl09.c:141: TINFO: Test SEM_STAT_ANY with nobody user semctl09.c:163: TPASS: SEM_INFO returned valid index 10 to semid 10 semctl09.c:175: TFAIL: Counted...

The test uses ``` struct shmid64_ds buf_ds = { .shm_atime_high = 0x0A0A, .shm_dtime_high = 0x0A0A, .shm_ctime_high = 0x0A0A, }; ``` from linux, but in case of powerpc, it's this: https://github.com/torvalds/linux/blob/master/arch/powerpc/include/uapi/asm/shmbuf.h...

The test calls ioctl with invalid address (-1), however https://github.com/lattera/glibc/blob/master/sysdeps/unix/sysv/linux/tcgetattr.c called from the ioctl wrapper https://github.com/lattera/glibc/blob/master/sysdeps/unix/sysv/linux/powerpc/ioctl.c has no safeguards against bad address and causes some stack damage or whatever: ```...

Summary: When running ioctl_fiemap01 on ext2, the test fails because it expects EBADR (53) when passing an invalid FIEMAP structure, but the kernel returns EINVAL (22) instead. This behavior is...

Fix: handle filenames with spaces/newlines in kernbench source caching This patch updates the loop used to cache the kernel source into RAM to handle filenames with spaces, newlines, and other...

openat02 requires to use TMPDIR mounted with `noatime` and `relatime` otherwise it `TCONF`. This works on `tmpfs` but not on `/var/tmp` on btrfs on Tumbleweed with kernel 6.15: https://openqa.opensuse.org/tests/5088823#step/openat02/8 ```...

enhancement
missing coverage

FailingLTP tests sched_rr_get_interval01 sched_rr_get_interval02 sched_rr_get_interval03 sched_setparam02 sched_getscheduler01 The above LTP tests are failing when the CONFIG_RT_GROUP_SCHED=y config is set. Either they need to be skipped when this config is set...