Home
last modified time | relevance | path

Searched refs:testresult (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/BlocksRuntime/tests/
Dvariadic.c52 long testresult = addthem("ii", 10, 20); in main() local
53 if (testresult != 30) { in main()
54 printf("got wrong result: %ld\n", testresult); in main()
57 testresult = addthem("idc", 30, 40.0, 'a'); in main()
58 if (testresult != (70+'a')) { in main()
59 printf("got different wrong result: %ld\n", testresult); in main()
/external/clang/test/Sema/
Dvariadic-block.c31 long testresult = addthem("ii", 10, 20); in main() local
32 if (testresult != 30) { in main()
35 testresult = addthem("idc", 30, 40.0, 'a'); in main()
36 if (testresult != (70+'a')) { in main()
/external/icu4c/test/cintltst/
Dcnormtst.c661 UBool testresult = UNORM_YES; in TestCheckFCD() local
688 testresult = UNORM_NO; in TestCheckFCD()
690 if (testresult == UNORM_YES) { in TestCheckFCD()
697 if (unorm_quickCheck(data, size, UNORM_FCD, &status) != testresult || U_FAILURE(status)) { in TestCheckFCD()
698 …norm_quickCheck(FCD) failed: expected %d for random data - (Are you missing data?)\n", testresult); in TestCheckFCD()