project_files/hwc/rtl/tests/check_check.c
author unc0rr
Sat, 27 Dec 2014 22:09:31 +0300
branch0.9.21
changeset 10721 9b789de8e5df
parent 10015 4feced261c68
permissions -rw-r--r--
Workaround bug (each time losing room master status, even when joining mutliple rooms, new instance of NetAmmoSchemeModel created, receiving schemeConfig and modifying its 43rd member, thus the last model which accepts this signal has the string cut down several times, workaround creates copy of qstringlist to avoid modifying shared message instance. Proper fix would delete unneeded instances of NetAmmoSchemeModel, but who cares)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     1
#include <check.h>
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     2
#include <stdlib.h>
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     3
#include "check_check.h"
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     4
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     5
int main(void)
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     6
{
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
     7
    int number_failed;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     8
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
     9
    Suite *s1 = system_suite();
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    10
    Suite *s2 = misc_suite();
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    11
    Suite *s3 = sysutils_suite();
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    12
    Suite *s4 = fileio_suite();
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    13
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    14
    SRunner *sr = srunner_create(s1);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    15
    srunner_add_suite(sr, s2);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    16
    srunner_add_suite(sr, s3);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    17
    srunner_add_suite(sr, s4);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    18
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    19
    srunner_run_all(sr, CK_NORMAL);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    20
    number_failed = srunner_ntests_failed(sr);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    21
    srunner_free(sr);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    22
    return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    23
}