Documentation: kunit: add a brief blurb about kunit_test_suite

Add a brief blurb saying how and when the kunit_test_suite() macro
works to the usage documentation.

Signed-off-by: Brendan Higgins <brendanhiggins@google.com>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by Brendan Higgins and committed by Shuah Khan a82763e6 45dcbb6f

+5
+5
Documentation/dev-tools/kunit/usage.rst
··· 211 211 .. note:: 212 212 A test case will only be run if it is associated with a test suite. 213 213 214 + ``kunit_test_suite(...)`` is a macro which tells the linker to put the specified 215 + test suite in a special linker section so that it can be run by KUnit either 216 + after late_init, or when the test module is loaded (depending on whether the 217 + test was built in or not). 218 + 214 219 For more information on these types of things see the :doc:`api/test`. 215 220 216 221 Isolating Behavior