mirror of
https://github.com/recp/cglm.git
synced 2026-01-02 13:49:59 +00:00
re-organise test structure
This commit is contained in:
19
test/src/test_main.c
Normal file
19
test/src/test_main.c
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Copyright (c), Recep Aslantas.
|
||||
* MIT License (MIT), http://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "test_common.h"
|
||||
#include "test_tests.h"
|
||||
|
||||
int
|
||||
main(int argc, const char * argv[]) {
|
||||
const struct CMUnitTest tests[] = {
|
||||
/* mat4 */
|
||||
cmocka_unit_test(test_mat4),
|
||||
};
|
||||
|
||||
return cmocka_run_group_tests(tests,
|
||||
NULL,
|
||||
NULL);
|
||||
}
|
||||
Reference in New Issue
Block a user