• Home
Name Date Size #Lines LOC

..--

.gitignoreD03-May-2024132 1514

Android.mkD03-May-20243.8 KiB11073

MakefileD03-May-2024335 1811

READMED03-May-2024660 1814

childthread.cD03-May-20241.4 KiB6138

clone.cD03-May-2024343 2217

fork.cD03-May-2024208 1613

leaderkill.cD03-May-20241.2 KiB6546

mmap_offset_decode.cD03-May-20241.2 KiB3211

mtd.cD03-May-20241 KiB5038

procpollable.cD03-May-2024633 4535

select.cD03-May-2024749 3522

sfd.cD03-May-2024675 4132

sig.cD03-May-2024250 2015

sigkill_rain.cD03-May-20241.6 KiB8556

sigreturn.cD03-May-2024658 3120

skodic.cD03-May-2024771 3827

threaded_execve.cD03-May-20243.9 KiB14893

ubi.cD03-May-20241.2 KiB5550

vfork.cD03-May-2024209 1613

wait_must_be_interruptible.cD03-May-20241.6 KiB8559

x32_lseek.cD03-May-20241.1 KiB3928

x32_mmap.cD03-May-20241.3 KiB5038

README

1To run a test:
2* Run make
3* Run resulting executable(s) under strace
4* Check strace output and/or program's output and exitcode
5
6To add a new test:
7* Add its .c source to this dir
8* Add it to "all" and "clean" targets in Makefile
9* Add it to .gitignore file
10
11Please spend some time making your testcase understandable.
12For example, it may print an explanation how it should be used
13(which strace options to use, and what to look for in strace output).
14
15If possible, make it so that your testcase detects error/bug
16it is intended to test for, and prints error message and exits with 1
17if the bug is detected, instead of relying on user to peruse strace output.
18