summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/tests/src/com/android/rs/test/bug_char.rs
blob: dcd7b7278f270b974684b250046e639e839e986e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "shared.rsh"

char rand_sc1_0, rand_sc1_1;
char2 rand_sc2_0, rand_sc2_1;

char min_rand_sc1_sc1;
char2 min_rand_sc2_sc2;

static bool test_bug_char() {
    bool failed = false;

    rsDebug("rand_sc2_0.x: ", rand_sc2_0.x);
    rsDebug("rand_sc2_0.y: ", rand_sc2_0.y);
    rsDebug("rand_sc2_1.x: ", rand_sc2_1.x);
    rsDebug("rand_sc2_1.y: ", rand_sc2_1.y);
    char temp_sc1;
    char2 temp_sc2;

    temp_sc1 = min( rand_sc1_0, rand_sc1_1 );
    if (temp_sc1 != min_rand_sc1_sc1) {
        rsDebug("temp_sc1", temp_sc1);
        failed = true;
    }
    rsDebug("broken", 'y');

    temp_sc2 = min( rand_sc2_0, rand_sc2_1 );
    if (temp_sc2.x != min_rand_sc2_sc2.x
            || temp_sc2.y != min_rand_sc2_sc2.y) {
        failed = true;
    }


    return failed;
}

void bug_char_test() {
    bool failed = false;
    failed |= test_bug_char();

    if (failed) {
        rsSendToClientBlocking(RS_MSG_TEST_FAILED);
    }
    else {
        rsSendToClientBlocking(RS_MSG_TEST_PASSED);
    }
}