uvg266/tests/tests_main.c
2014-06-16 18:03:56 +03:00

15 lines
250 B
C

#include "greatest/greatest.h"
GREATEST_MAIN_DEFS();
extern SUITE(sad_tests);
extern SUITE(intra_sad_tests);
int main(int argc, char **argv)
{
GREATEST_MAIN_BEGIN();
RUN_SUITE(sad_tests);
RUN_SUITE(intra_sad_tests);
GREATEST_MAIN_END();
}