File: tests.c

package info (click to toggle)
xwayland 2%3A24.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,656 kB
  • sloc: ansic: 202,932; xml: 6,578; sh: 208; makefile: 21
file content (14 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string.h>
#include "tests.h"
#include "tests-common.h"

int verbose = 0;

int
main(int argc, char **argv)
{
    run_test(list_test);
    run_test(string_test);

    return 0;
}