mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 07:00:03 +01:00
v2: Change the FDO_DISTRIBUTION_TAG (Michel)
(cherry picked from commit 4f4b8e00fc)
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1483>
14 lines
187 B
C
14 lines
187 B
C
#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;
|
|
}
|