summaryrefslogtreecommitdiff
path: root/ghc/runtime/regex/test/main.c
blob: 28ae31528579aeb8a9140405ada198f02e0443d7 (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
/* Main routine for running various tests.  Meant only to be linked with
   all the auxiliary test source files, with `test' undefined.  */

#include "test.h"

test_type t = all_test;


/* Use this to run the tests we've thought of.  */

int
main ()
{
  switch (t)
  {
  case all_test:
    test_regress ();
    test_others ();
    test_posix_basic ();
    test_posix_extended ();
    test_posix_interface ();
    break;
    
  case other_test:
    test_others ();
    break;
  
  case posix_basic_test:
    test_posix_basic ();
    break;
  
  case posix_extended_test:
    test_posix_extended ();
    break;
  
  case posix_interface_test:
    test_posix_interface ();
    break;
  
  case regress_test:
    test_regress ();
    break;
    
  default:
    fprintf (stderr, "Unknown test %d.\n", t);
  }

  return 0;
}