Lines Matching full:functions
23 A kernel test module is a kernel module that contains test functions
31 By writing tests as kernel functions it allows one to more thoroughly test
76 For tests that exercise many functions do your best to make the name
78 The test functions are typically suffixed with "_test" to visually
79 separate them from test-helper functions; and the test name is often
96 All test functions must conform to the following prototype.
141 .Ss Testing Private Functions
144 ) functions is going to be pretty limited.
145 Some of the most useful functions to test are those that act as
146 "helpers" to other, larger functions.
147 These functions are often declared
153 functions inside the regular kernel modules themselves, but it
157 function for obtaining a handle to private functions.
173 Test functions are prefixed with their test module name.
175 Test functions are suffixed with "_test" to distinguish them from test
176 helper functions.