Home | History | Annotate | Download | only in unit-tests

Lines Matching refs:if

3 # Tests for the && operator in .if conditions.
5 .if 0 && 0
9 .if 1 && 0
13 .if 0 && 1
17 .if !(1 && 1)
24 .if 0 && ${UNDEF}
29 .if 1 || (${UNDEF} && ${UNDEF})
33 # of the inner '&&' are only evaluated if necessary.
36 .if 0 || (${DEF} && ${UNDEF})
38 .if 0 || (!${DEF} && ${UNDEF})
41 .if 0 || (${UNDEF} && ${UNDEF})
44 .if 0 || (!${UNDEF} && ${UNDEF})
46 .if 1 || (${DEF} && ${UNDEF})
48 .if 1 || (!${DEF} && ${UNDEF})
50 .if 1 || (${UNDEF} && ${UNDEF})
52 .if 1 || (!${UNDEF} && ${UNDEF})
60 .if 0 & 0
66 .if 1 & 0
72 .if 0 & 1
78 .if !(1 & 1)
87 .if 0 &&& 0
96 .if 1&& && 1