summaryrefslogtreecommitdiff
path: root/cogl/tests/unit/test-unit-main.c
blob: cb446de6281fa12011d9df8a056bc8d6b8627eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "cogl-config.h"

#include <gmodule.h>

#include <test-fixtures/test-unit.h>
#include <stdlib.h>

int
main (int argc, char **argv)
{
  GModule *main_module;
  const CoglUnitTest *unit_test;
  int i;

  if (argc != 2)
    {
      g_printerr ("usage %s UNIT_TEST\n", argv[0]);
      exit (1);
    }

  /* Just for convenience in case people try passing the wrapper
   * filenames for the UNIT_TEST argument we normalize '-' characters
   * to '_' characters... */
  for (i = 0; argv[1][i]; i++)
    {
      if (argv[1][i] == '-')
        argv[1][i] = '_';
    }

  main_module = g_module_open (NULL, /* use main module */
                               0 /* flags */);

  if (!g_module_symbol (main_module, argv[1], (void **) &unit_test))
    {
      g_printerr ("Unknown test name \"%s\"\n", argv[1]);
      return 1;
    }

  if (test_utils_init (unit_test->requirement_flags,
                       unit_test->known_failure_flags)
      || g_getenv ("COGL_TEST_TRY_EVERYTHING") != NULL)
    {
      unit_test->run ();
      test_utils_fini ();
      return 0;
    }
  else
    {
      return 1;
    }
}