mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
20 lines
401 B
C
20 lines
401 B
C
/*
|
|
* 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);
|
|
}
|