23 lines
535 B
C
23 lines
535 B
C
/*
|
|
* Input-only test runner for the Renderive Datoviz module split.
|
|
* The upstream runner groups input with the unavailable window/canvas stack.
|
|
*/
|
|
|
|
#include "_log.h"
|
|
#include "../../src/input/tests/test_input.h"
|
|
#include "datoviz_testing.h"
|
|
#include "testing.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
log_set_level_env();
|
|
|
|
TstSuite suite = tst_suite();
|
|
dvz_testing_install_log_adapter(&suite);
|
|
test_input(&suite);
|
|
|
|
int result = tst_suite_run(&suite, argc, argv);
|
|
tst_suite_destroy(&suite);
|
|
return result;
|
|
}
|