serenity/Tests/Kernel
Timothy Flynn ec492a1a08 Everywhere: Run clang-format
The following command was used to clang-format these files:

    clang-format-18 -i $(find . \
        -not \( -path "./\.*" -prune \) \
        -not \( -path "./Base/*" -prune \) \
        -not \( -path "./Build/*" -prune \) \
        -not \( -path "./Toolchain/*" -prune \) \
        -not \( -path "./Ports/*" -prune \) \
        -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")

There are a couple of weird cases where clang-format now thinks that a
pointer access in an initializer list, e.g. `m_member(ptr->foo)`, is a
lambda return statement, and it puts spaces around the `->`.
2024-04-24 16:50:01 -04:00
..
bind-local-socket-to-symlink.cpp
CMakeLists.txt Kernel: Add basic KCOV test and benchmark 2024-04-15 21:16:22 -06:00
crash-fcntl-invalid-cmd.cpp
crash.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
elf-execve-mmap-race.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
elf-symbolication-kernel-read-exploit.cpp Userland+Tests: Add initial riscv64 support 2023-11-10 10:30:08 -07:00
fuzz-syscalls.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
kill-pidtid-confusion.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
mmap-write-into-running-programs-executable-file.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
mprotect-multi-region-mprotect.cpp
munmap-multi-region-unmapping.cpp
nanosleep-race-outbuf-munmap.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
null-deref-close-during-select.cpp
null-deref-crash-during-pthread_join.cpp
path-resolution-race.cpp
pthread-cond-timedwait-example.cpp
setpgid-across-sessions-without-leader.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
siginfo-example.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
stress-truncate.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
stress-writeread.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TestEFault.cpp
TestEmptyPrivateInodeVMObject.cpp Userland+Tests: Don't use MAP_FILE when mmap-ing 2023-09-01 19:50:35 +02:00
TestEmptySharedInodeVMObject.cpp Userland+Tests: Don't use MAP_FILE when mmap-ing 2023-09-01 19:50:35 +02:00
TestExt2FS.cpp Kernel/Ext2: Avoid overflow when updating UID and GID values 2023-10-24 07:21:11 +02:00
TestFileSystemDirentTypes.cpp Tests/Kernel: Add test for /dev/loop directory structure 2024-03-13 15:33:47 -06:00
TestInvalidUIDSet.cpp
TestKCOV.cpp Kernel: Add basic KCOV test and benchmark 2024-04-15 21:16:22 -06:00
TestKernelAlarm.cpp AK: Rename Time to Duration 2023-05-24 23:18:07 +02:00
TestKernelFilePermissions.cpp LibFileSystem+Everywhere: Return ByteString from read_link() 2024-01-16 08:42:34 +00:00
TestKernelPledge.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TestKernelUnveil.cpp Kernel: Use FixedStringBuffer for fixed-length strings in syscalls 2023-08-09 21:06:54 -06:00
TestLoopDevice.cpp Tests/Kernel: Add tests for verifying proper loop device support 2024-03-13 15:33:47 -06:00
TestMemoryDeviceMmap.cpp
TestMunMap.cpp
TestPosixFallocate.cpp
TestPrivateInodeVMObject.cpp Userland+Tests: Don't use MAP_FILE when mmap-ing 2023-09-01 19:50:35 +02:00
TestProcFS.cpp
TestProcFSWrite.cpp Kernel+Userland: Remove the {get,set}_thread_name syscalls 2023-08-25 11:51:52 +02:00
TestSharedInodeVMObject.cpp Userland+Tests: Don't use MAP_FILE when mmap-ing 2023-09-01 19:50:35 +02:00
TestSigAltStack.cpp
TestSigHandler.cpp
TestSigWait.cpp
TestTCPSocket.cpp Kernel+Tests: Don't panic when LocalSocket is already bound 2024-02-23 09:49:23 +01:00
uaf-close-while-blocked-in-read.cpp
unveil-symlinks.cpp