tests.h and tlscontext.js.h docs.

This commit is contained in:
2024-02-28 21:18:59 -05:00
parent 72dae14f87
commit c991763b00
2 changed files with 29 additions and 0 deletions

View File

@ -6,12 +6,21 @@
** @{
*/
/**
** Options to control how tests are run.
*/
typedef struct _tf_test_options_t
{
/** The path to the Tilde Friends executable, in order to run subprocesses. */
const char* exe_path;
/** A comma-separated list of tests to run, or NULL. */
const char* tests;
} tf_test_options_t;
/**
** Run tests.
** @param options Test options.
*/
void tf_tests(const tf_test_options_t* options);
/** @} */