mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
tests: Convert test/ to single binary
Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Mihail Konev <k.mvc@ya.ru>
This commit is contained in:
committed by
Adam Jackson
parent
773fc07e4c
commit
ead5064581
25
test/tests.c
Normal file
25
test/tests.c
Normal file
@@ -0,0 +1,25 @@
|
||||
#include <string.h>
|
||||
#include "tests.h"
|
||||
#include "tests-common.h"
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
run_test(fixes_test);
|
||||
|
||||
#ifdef RES_TESTS
|
||||
run_test(hashtabletest_test);
|
||||
#endif
|
||||
|
||||
run_test(input_test);
|
||||
run_test(list_test);
|
||||
run_test(misc_test);
|
||||
run_test(signal_logging_test);
|
||||
run_test(string_test);
|
||||
run_test(touch_test);
|
||||
run_test(xfree86_test);
|
||||
run_test(xkb_test);
|
||||
run_test(xtest_test);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user