Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

selftests: fix some typos in tools/testing/selftests

Fix multiple spelling errors:

- "rougly" -> "roughly"
- "fielesystems" -> "filesystems"
- "Can'" -> "Can't"

Link: https://lkml.kernel.org/r/20250503211959.507815-1-chelsyratnawat2001@gmail.com
Signed-off-by: Chelsy Ratnawat <chelsyratnawat2001@gmail.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Chelsy Ratnawat and committed by
Andrew Morton
f11c1efe 479d26ee

+5 -5
+1 -1
tools/testing/selftests/filesystems/file_stressor.c
··· 156 156 ssize_t nr_read; 157 157 158 158 /* 159 - * Concurrently read /proc/<pid>/fd/ which rougly does: 159 + * Concurrently read /proc/<pid>/fd/ which roughly does: 160 160 * 161 161 * f = fget_task_next(p, &fd); 162 162 * if (!f)
+1 -1
tools/testing/selftests/mm/gup_longterm.c
··· 158 158 /* 159 159 * R/O pinning or pinning in a private mapping is always 160 160 * expected to work. Otherwise, we expect long-term R/W pinning 161 - * to only succeed for special fielesystems. 161 + * to only succeed for special filesystems. 162 162 */ 163 163 should_work = !shared || !rw || 164 164 fs_supports_writable_longterm_pinning(fs_type);
+1 -1
tools/testing/selftests/thermal/intel/power_floor/power_floor_test.c
··· 56 56 } 57 57 58 58 if (write(fd, "1\n", 2) < 0) { 59 - perror("Can' enable power floor notifications\n"); 59 + perror("Can't enable power floor notifications\n"); 60 60 exit(1); 61 61 } 62 62
+2 -2
tools/testing/selftests/thermal/intel/workload_hint/workload_hint_test.c
··· 37 37 } 38 38 39 39 if (write(fd, "0\n", 2) < 0) { 40 - perror("Can' disable workload hints\n"); 40 + perror("Can't disable workload hints\n"); 41 41 exit(1); 42 42 } 43 43 ··· 99 99 } 100 100 101 101 if (write(fd, "1\n", 2) < 0) { 102 - perror("Can' enable workload hints\n"); 102 + perror("Can't enable workload hints\n"); 103 103 exit(1); 104 104 } 105 105