Lines Matching defs:failed
739 int failed = 0;
743 if ((threshold == actual)) { failed = 1; }
747 if ((actual > threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
748 if ((actual < threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
752 if (((UNITY_UINT)actual > (UNITY_UINT)threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
753 if (((UNITY_UINT)actual < (UNITY_UINT)threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
756 if (failed)
1058 int failed;
1062 failed = 0;
1065 if (!(actual < threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
1066 if (!(actual > threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
1068 if ((compare & UNITY_EQUAL_TO) && UnityFloatsWithin(threshold * UNITY_FLOAT_PRECISION, threshold, actual)) { failed = 0; }
1070 if (failed)
1285 int failed;
1289 failed = 0;
1292 if (!(actual < threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
1293 if (!(actual > threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
1295 if ((compare & UNITY_EQUAL_TO) && UnityDoublesWithin(threshold * UNITY_DOUBLE_PRECISION, threshold, actual)) { failed = 0; }
1297 if (failed)