Lines Matching defs:succ

1091   int tests = 0, succ = 0, fail = 0;
1092 tests++; if (T_div_s8()) succ++; else fail++;
1093 tests++; if (T_div_s16()) succ++; else fail++;
1094 tests++; if (T_div_s32()) succ++; else fail++;
1095 tests++; if (T_div_s64()) succ++; else fail++;
1096 tests++; if (T_div_long()) succ++; else fail++;
1097 tests++; if (T_div_longlong()) succ++; else fail++;
1098 tests++; if (T_div_ssizet()) succ++; else fail++;
1099 tests++; if (T_div_u8()) succ++; else fail++;
1100 tests++; if (T_div_u16()) succ++; else fail++;
1101 tests++; if (T_div_u32()) succ++; else fail++;
1102 tests++; if (T_div_u64()) succ++; else fail++;
1103 tests++; if (T_div_ulong()) succ++; else fail++;
1104 tests++; if (T_div_ulonglong()) succ++; else fail++;
1105 tests++; if (T_div_sizet()) succ++; else fail++;
1107 tests++; if (T_mod_s8()) succ++; else fail++;
1108 tests++; if (T_mod_s16()) succ++; else fail++;
1109 tests++; if (T_mod_s32()) succ++; else fail++;
1110 tests++; if (T_mod_s64()) succ++; else fail++;
1111 tests++; if (T_mod_long()) succ++; else fail++;
1112 tests++; if (T_mod_longlong()) succ++; else fail++;
1113 tests++; if (T_mod_ssizet()) succ++; else fail++;
1114 tests++; if (T_mod_u8()) succ++; else fail++;
1115 tests++; if (T_mod_u16()) succ++; else fail++;
1116 tests++; if (T_mod_u32()) succ++; else fail++;
1117 tests++; if (T_mod_u64()) succ++; else fail++;
1118 tests++; if (T_mod_ulong()) succ++; else fail++;
1119 tests++; if (T_mod_ulonglong()) succ++; else fail++;
1120 tests++; if (T_mod_sizet()) succ++; else fail++;
1122 tests++; if (T_mul_s8()) succ++; else fail++;
1123 tests++; if (T_mul_s16()) succ++; else fail++;
1124 tests++; if (T_mul_s32()) succ++; else fail++;
1125 tests++; if (T_mul_s64()) succ++; else fail++;
1126 tests++; if (T_mul_long()) succ++; else fail++;
1127 tests++; if (T_mul_longlong()) succ++; else fail++;
1128 tests++; if (T_mul_ssizet()) succ++; else fail++;
1129 tests++; if (T_mul_u8()) succ++; else fail++;
1130 tests++; if (T_mul_u16()) succ++; else fail++;
1131 tests++; if (T_mul_u32()) succ++; else fail++;
1132 tests++; if (T_mul_u64()) succ++; else fail++;
1133 tests++; if (T_mul_ulong()) succ++; else fail++;
1134 tests++; if (T_mul_ulonglong()) succ++; else fail++;
1135 tests++; if (T_mul_sizet()) succ++; else fail++;
1137 tests++; if (T_sub_s8()) succ++; else fail++;
1138 tests++; if (T_sub_s16()) succ++; else fail++;
1139 tests++; if (T_sub_s32()) succ++; else fail++;
1140 tests++; if (T_sub_s64()) succ++; else fail++;
1141 tests++; if (T_sub_long()) succ++; else fail++;
1142 tests++; if (T_sub_longlong()) succ++; else fail++;
1143 tests++; if (T_sub_ssizet()) succ++; else fail++;
1144 tests++; if (T_sub_u8()) succ++; else fail++;
1145 tests++; if (T_sub_u16()) succ++; else fail++;
1146 tests++; if (T_sub_u32()) succ++; else fail++;
1147 tests++; if (T_sub_u64()) succ++; else fail++;
1148 tests++; if (T_sub_ulong()) succ++; else fail++;
1149 tests++; if (T_sub_ulonglong()) succ++; else fail++;
1150 tests++; if (T_sub_sizet()) succ++; else fail++;
1152 tests++; if (T_add_s8()) succ++; else fail++;
1153 tests++; if (T_add_s16()) succ++; else fail++;
1154 tests++; if (T_add_s32()) succ++; else fail++;
1155 tests++; if (T_add_s64()) succ++; else fail++;
1156 tests++; if (T_add_long()) succ++; else fail++;
1157 tests++; if (T_add_longlong()) succ++; else fail++;
1158 tests++; if (T_add_ssizet()) succ++; else fail++;
1159 tests++; if (T_add_u8()) succ++; else fail++;
1160 tests++; if (T_add_u16()) succ++; else fail++;
1161 tests++; if (T_add_u32()) succ++; else fail++;
1162 tests++; if (T_add_u64()) succ++; else fail++;
1163 tests++; if (T_add_ulong()) succ++; else fail++;
1164 tests++; if (T_add_ulonglong()) succ++; else fail++;
1165 tests++; if (T_add_sizet()) succ++; else fail++;
1166 tests++; if (T_add_mixed()) succ++; else fail++;
1167 tests++; if (T_add_increment()) succ++; else fail++;
1169 tests++; if (T_magic_constants()) succ++; else fail++;
1173 printf("%d/%d tests succeeded (%d failures)\n", succ, tests, fail);