mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 20:34:58 +00:00
22 lines
438 B
C
22 lines
438 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),
|
|
|
|
/* camera */
|
|
cmocka_unit_test(test_camera_lookat),
|
|
cmocka_unit_test(test_camera_decomp)
|
|
};
|
|
|
|
return cmocka_run_group_tests(tests, NULL, NULL);
|
|
}
|