project_files/hwc/rtl/tests/check_system.c
author unc0rr
Sat, 27 Dec 2014 22:09:31 +0300
branch0.9.21
changeset 10721 9b789de8e5df
parent 10015 4feced261c68
child 14206 801dc57371c3
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 <stdio.h>
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     4
#include "check_check.h"
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     5
#include "../src/system.h"
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     6
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
     7
void check_string(string255 str)
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
    fail_unless(strlen(str.str) == str.len, "String internal inconsistency error");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    10
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    11
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    12
static string255 make_string(const char* str)
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
    string255 s;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    15
    s.len = strlen(str);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    16
    memcpy(s.str, str, s.len + 1);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    17
    return s;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    18
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    19
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    20
START_TEST (test_copy)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    21
    {
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    22
        string255 s = STRINIT("1234567");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    23
        string255 t;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    24
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    25
        t = fpcrtl_copy(s, 1, 1);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    26
        fail_if(strcmp(t.str, "1"), "Test copy fail 1");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    27
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    28
        t = fpcrtl_copy(s, 7, 1);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    29
        fail_if(strcmp(t.str, "7"), "Test copy fail 2");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    30
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    31
        t = fpcrtl_copy(s, 8, 1);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    32
        fail_if(t.len != 0, "Test copy fail 3");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    33
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    34
        t = fpcrtl_copy(s, 8, 100);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    35
        fail_if(t.len != 0, "Test copy fail 4");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    36
        check_string(t);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    37
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    38
        t = fpcrtl_copy(s, 0, 100);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    39
        fail_if(strcmp(t.str, "1234567"), "Test copy fail 5");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    40
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    41
        t = fpcrtl_copy(s, 0, 5);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    42
        fail_if(strcmp(t.str, "12345"), "Test copy fail 6");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    43
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    44
        t = fpcrtl_copy(s, 4, 100);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    45
        fail_if(strcmp(t.str, "4567"), "Test copy fail 7");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    46
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    47
        t = fpcrtl_copy(s, 4, 2);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    48
        fail_if(strcmp(t.str, "45"), "Test copy fail 8");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    49
    }END_TEST
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    50
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    51
START_TEST (test_delete)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    52
    {
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    53
        string255 s = STRINIT("1234567");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    54
        string255 s2 = STRINIT("1234567");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    55
        string255 s3 = STRINIT("1234567");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    56
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    57
        fpcrtl_delete(s, 0, 10);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    58
        fail_if(strcmp(s.str, "1234567"), "delete(\"1234567\", 0, 10)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    59
        check_string(s);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    60
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    61
        fpcrtl_delete(s, 1, 1);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    62
        fail_if(strcmp(s.str, "234567"), "delete(\"1234567\", 1, 1)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    63
        check_string(s);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    64
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    65
        fpcrtl_delete(s, 1, 100);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    66
        fail_if(strcmp(s.str, ""), "delete(\"234567\", 1, 100)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    67
        check_string(s);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    68
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    69
        fpcrtl_delete(s2, 3, 2);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    70
        fail_if(strcmp(s2.str, "12567"), "delete(\"1234567\", 3, 2)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    71
        check_string(s2);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    72
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    73
        fpcrtl_delete(s3, 3, 100);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    74
        fail_if(strcmp(s3.str, "12"), "delete(\"1234567\", 3, 100)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    75
        check_string(s3);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    76
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    77
    }
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    78
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    79
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    80
START_TEST (test_FloatToStr)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    81
    {
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    82
        double s = 1.2345;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    83
        string255 t = fpcrtl_floatToStr(s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    84
        printf("-----Entering test floatToStr-----\n");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    85
        printf("FloatToStr(%f) = %s\n", s, t.str);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    86
        printf("-----Leaving test floatToStr-----\n");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    87
    }
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    88
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    89
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    90
START_TEST (test_random)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    91
    {
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    92
        fpcrtl_randomize();
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    93
        printf("-----Entering test random-----\n");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    94
        printf("random(5000) = %d\n", fpcrtl_random(5000));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    95
        printf("random(1) = %d\n", fpcrtl_random(1));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    96
        printf("random(2) = %d\n", fpcrtl_random(2));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    97
        printf("-----Leaving test random-----\n");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
    98
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
    99
    }
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   100
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   101
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   102
START_TEST (test_posS)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   103
    {
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   104
        string255 substr1 = STRINIT("123");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   105
        string255 str1 = STRINIT("12345");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   106
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   107
        string255 substr2 = STRINIT("45");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   108
        string255 str2 = STRINIT("12345");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   109
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   110
        string255 substr3 = STRINIT("");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   111
        string255 str3 = STRINIT("12345");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   112
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   113
        string255 substr4 = STRINIT("123");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   114
        string255 str4 = STRINIT("");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   115
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   116
        string255 substr5 = STRINIT("123");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   117
        string255 str5 = STRINIT("456");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   118
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   119
        fail_unless(fpcrtl_posS(substr1, str1) == 1, "pos(123, 12345)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   120
        fail_unless(fpcrtl_posS(substr2, str2) == 4, "pos(45, 12345)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   121
        fail_unless(fpcrtl_posS(substr3, str3) == 0, "pos(, 12345)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   122
        fail_unless(fpcrtl_posS(substr4, str4) == 0, "pos(123, )");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   123
        fail_unless(fpcrtl_posS(substr5, str5) == 0, "pos(123, 456)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   124
    }
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   125
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   126
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   127
START_TEST (test_trunc)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   128
    {
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   129
          fail_unless(fpcrtl_trunc(123.456) == 123, "trunc(123.456)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   130
          fail_unless(fpcrtl_trunc(-123.456) == -123, "trunc(-123.456)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   131
          fail_unless(fpcrtl_trunc(12.3456) == 12, "trunc(12.3456)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   132
          fail_unless(fpcrtl_trunc(-12.3456) == -12, "trunc(-12.3456)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   133
    }
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   134
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   135
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   136
START_TEST (test_odd)
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   137
{
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   138
    fail_unless(fpcrtl_odd(123) != 0, "odd(123)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   139
    fail_unless(fpcrtl_odd(124) == 0, "odd(124)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   140
    fail_unless(fpcrtl_odd(0) == 0, "odd(0)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   141
    fail_unless(fpcrtl_odd(-1) != 0, "odd(-1)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   142
    fail_unless(fpcrtl_odd(-2) == 0, "odd(-2)");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   143
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   144
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   145
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   146
START_TEST (test_sqr)
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   147
{
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   148
    fail_unless(fpcrtl_sqr(0) == 0, "sqr(0)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   149
    fail_unless(fpcrtl_sqr(5) == 25, "sqr(5)");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   150
    fail_unless(fpcrtl_sqr(-5) == 25, "sqr(-5)");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   151
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   152
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   153
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   154
START_TEST (test_lowercase)
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   155
{
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   156
    string255 s1 = STRINIT("");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   157
    string255 s2 = STRINIT("a");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   158
    string255 s3 = STRINIT("abc");
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   159
    string255 t;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   160
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   161
    t = fpcrtl_lowerCase(make_string(""));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   162
    fail_if(strcmp(t.str, s1.str), "lowerCase(\"\")");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   163
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   164
    t = fpcrtl_lowerCase(make_string("a"));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   165
    fail_if(strcmp(t.str, s2.str), "lowerCase(\"a\")");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   166
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   167
    t = fpcrtl_lowerCase(make_string("A"));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   168
    fail_if(strcmp(t.str, s2.str), "lowerCase(\"A\")");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   169
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   170
    t = fpcrtl_lowerCase(make_string("AbC"));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   171
    fail_if(strcmp(t.str, s3.str), "lowerCase(\"AbC\")");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   172
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   173
    t = fpcrtl_lowerCase(make_string("abc"));
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   174
    fail_if(strcmp(t.str, s3.str), "lowerCase(\"abc\")");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   175
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   176
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   177
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   178
START_TEST (test_str)
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   179
{
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   180
    int8_t a1 = -8;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   181
    uint8_t a2 = 8;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   182
    int16_t a3 = -13;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   183
    uint16_t a4 = 13;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   184
    int32_t a5 = -19;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   185
    uint32_t a6 = 22;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   186
    int64_t a7 = -199999999999999;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   187
    uint64_t a8 = 200000000000000;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   188
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   189
    float a9 = 12345.6789;
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   190
    double a10 = -9876.54321;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   191
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   192
    string255 s;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   193
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   194
    printf("-----Entering test str-----\n");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   195
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   196
    fpcrtl_str(a1, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   197
    printf("%d == %s\n", a1, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   198
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   199
    fpcrtl_str(a2, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   200
    printf("%u == %s\n", a2, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   201
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   202
    fpcrtl_str(a3, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   203
    printf("%d == %s\n", a3, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   204
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   205
    fpcrtl_str(a4, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   206
    printf("%u == %s\n", a4, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   207
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   208
    fpcrtl_str(a5, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   209
    printf("%d == %s\n", a5, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   210
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   211
    fpcrtl_str(a6, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   212
    printf("%u == %s\n", a6, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   213
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   214
    fpcrtl_str(a7, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   215
    printf("%lld == %s\n", a7, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   216
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   217
    fpcrtl_str(a8, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   218
    printf("%llu == %s\n", a8, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   219
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   220
    fpcrtl_str(a9, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   221
    printf("%f == %s\n", a9, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   222
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   223
    fpcrtl_str(a10, s);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   224
    printf("%f == %s\n", a10, s.str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   225
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   226
    printf("-----Leaving test str------\n");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   227
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   228
END_TEST
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   229
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   230
Suite* system_suite(void)
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   231
{
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   232
    Suite *s = suite_create("system");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   233
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   234
    TCase *tc_core = tcase_create("Core");
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   235
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   236
    tcase_add_test(tc_core, test_copy);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   237
    tcase_add_test(tc_core, test_FloatToStr);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   238
    tcase_add_test(tc_core, test_random);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   239
    tcase_add_test(tc_core, test_posS);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   240
    tcase_add_test(tc_core, test_trunc);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   241
    tcase_add_test(tc_core, test_delete);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   242
    tcase_add_test(tc_core, test_odd);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   243
    tcase_add_test(tc_core, test_sqr);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   244
    tcase_add_test(tc_core, test_lowercase);
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   245
    tcase_add_test(tc_core, test_str);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   246
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   247
    suite_add_tcase(s, tc_core);
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   248
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 7983
diff changeset
   249
    return s;
7983
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   250
}
02f36c3e7f6c add xymeng's rtl port
koda
parents:
diff changeset
   251