project_files/hwc/rtl/tests/check_check.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Apr 2019 23:01:05 +0200
changeset 14844 e239378a9400
parent 10015 4feced261c68
permissions -rw-r--r--
Prevent entering “/”, “\” and “:” in team and scheme names. The name of teams and schems is saved in the file name itself, so these characters would cause trouble as they are used in path names in Linux and Windows.
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
}