2014-01-31 12:35:37 +00:00
|
|
|
#include "greatest/greatest.h"
|
2013-09-20 14:06:53 +00:00
|
|
|
|
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
GREATEST_MAIN_DEFS();
|
|
|
|
extern SUITE(sad_tests);
|
2014-06-16 15:01:55 +00:00
|
|
|
extern SUITE(intra_sad_tests);
|
2014-07-14 09:57:18 +00:00
|
|
|
extern SUITE(satd_tests);
|
2013-09-20 14:06:53 +00:00
|
|
|
|
2014-01-31 12:35:37 +00:00
|
|
|
int main(int argc, char **argv)
|
2013-09-20 14:06:53 +00:00
|
|
|
{
|
2014-01-31 12:35:37 +00:00
|
|
|
GREATEST_MAIN_BEGIN();
|
|
|
|
RUN_SUITE(sad_tests);
|
2014-06-16 15:01:55 +00:00
|
|
|
RUN_SUITE(intra_sad_tests);
|
2014-07-14 09:57:18 +00:00
|
|
|
RUN_SUITE(satd_tests);
|
2014-06-12 12:04:48 +00:00
|
|
|
GREATEST_MAIN_END();
|
2013-09-20 13:21:11 +00:00
|
|
|
}
|