63 lines · plain
1Futex Test2==========3Futex Test is intended to thoroughly test the Linux kernel futex system call4API.5 6Functional tests shall test the documented behavior of the futex operation7code under test. This includes checking for proper behavior under normal use,8odd corner cases, regression tests, and abject abuse and misuse.9 10Futextest will also provide example implementation of mutual exclusion11primitives. These can be used as is in user applications or can serve as12examples for system libraries. These will likely be added to either a new lib/13directory or purely as header files under include/, I'm leaning toward the14latter.15 16Quick Start17-----------18# make19# ./run.sh20 21Design and Implementation Goals22-------------------------------23o Tests should be as self contained as is practical so as to facilitate sharing24 the individual tests on mailing list discussions and bug reports.25o The build system shall remain as simple as possible, avoiding any archive or26 shared object building and linking.27o Where possible, any helper functions or other package-wide code shall be28 implemented in header files, avoiding the need to compile intermediate object29 files.30o External dependencies shall remain as minimal as possible. Currently gcc31 and glibc are the only dependencies.32o Tests return 0 for success and < 0 for failure.33 34Output Formatting35-----------------36Test output shall be easily parsable by both human and machine. Title and37results are printed to stdout, while intermediate ERROR or FAIL messages are38sent to stderr. Tests shall support the -c option to print PASS, FAIL, and39ERROR strings in color for easy visual parsing. Output shall conform to the40following format:41 42test_name: Description of the test43 Arguments: arg1=val1 #units specified for clarity where appropriate44 ERROR: Description of unexpected error45 FAIL: Reason for test failure46 # FIXME: Perhaps an " INFO: informational message" option would be47 # useful here. Using -v to toggle it them on and off, as with -c.48 # there may be multiple ERROR or FAIL messages49Result: (PASS|FAIL|ERROR)50 51Naming52------53o FIXME: decide on a sane test naming scheme. Currently the tests are named54 based on the primary futex operation they test. Eventually this will become a55 problem as we intend to write multiple tests which collide in this namespace.56 Perhaps something like "wait-wake-1" "wait-wake-2" is adequate, leaving the57 detailed description in the test source and the output.58 59Coding Style60------------61o The Futex Test project adheres to the coding standards set forth by Linux62 kernel as defined in the Linux source Documentation/process/coding-style.rst.63