mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
29 lines
523 B
C
29 lines
523 B
C
#include "greatest/greatest.h"
|
|
|
|
#include "test_strategies.h"
|
|
|
|
GREATEST_MAIN_DEFS();
|
|
extern SUITE(sad_tests);
|
|
extern SUITE(intra_sad_tests);
|
|
extern SUITE(satd_tests);
|
|
extern SUITE(speed_tests);
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
GREATEST_MAIN_BEGIN();
|
|
|
|
init_test_strategies();
|
|
|
|
RUN_SUITE(sad_tests);
|
|
RUN_SUITE(intra_sad_tests);
|
|
RUN_SUITE(satd_tests);
|
|
|
|
if (greatest_info.suite_filter &&
|
|
greatest_name_match("speed", greatest_info.suite_filter))
|
|
{
|
|
RUN_SUITE(speed_tests);
|
|
}
|
|
|
|
GREATEST_MAIN_END();
|
|
}
|