Lines Matching refs:equality
50 # Assert the equality of A and B, ignoring trailing empty string elements.
195 # Assert the equality of A and B as sets.
230 # Assert the exact equality of A and B, not ignoring trailing empty string
258 # equality test rules.
260 local rule run-equality-test ( equality-assert : ignore-trailing-empty-strings ? )
262 local not-equality-assert = not-$(equality-assert) ;
264 # When the given equality test is expected to ignore trailing empty
266 local not-equality-assert-i = not-$(equality-assert) ;
269 not-equality-assert-i = $(equality-assert) ;
272 $(equality-assert) : ;
273 $(equality-assert) "" "" : "" "" ;
274 $(not-equality-assert-i) : "" "" ;
275 $(equality-assert) x : x ;
276 $(not-equality-assert) : x ;
277 $(not-equality-assert) "" : x ;
278 $(not-equality-assert) "" "" : x ;
279 $(not-equality-assert-i) x : x "" ;
280 $(equality-assert) x "" : x "" ;
281 $(not-equality-assert) x : "" x ;
282 $(equality-assert) "" x : "" x ;
284 $(equality-assert) 1 2 3 : 1 2 3 ;
285 $(not-equality-assert) 1 2 3 : 3 2 1 ;
286 $(not-equality-assert) 1 2 3 : 1 5 3 ;
287 $(not-equality-assert) 1 2 3 : 1 "" 3 ;
288 $(not-equality-assert) 1 2 3 : 1 1 2 3 ;
289 $(not-equality-assert) 1 2 3 : 1 2 2 3 ;
290 $(not-equality-assert) 1 2 3 : 5 6 7 ;
301 $(equality-assert) : $(empty) ;
302 $(not-equality-assert-i) "" : $(empty) ;
303 $(not-equality-assert-i) "" "" : $(empty) ;
304 $(not-equality-assert-i) : $(empty-strings) ;
305 $(not-equality-assert-i) "" : $(empty-strings) ;
306 $(equality-assert) "" "" : $(empty-strings) ;
307 $(equality-assert) $(empty) : $(empty) ;
308 $(equality-assert) $(empty-strings) : $(empty-strings) ;
309 $(not-equality-assert-i) $(empty) : $(empty-strings) ;
310 $(equality-assert) $(x-empty-strings) : $(x-empty-strings) ;
311 $(equality-assert) $(empty-strings-x) : $(empty-strings-x) ;
312 $(not-equality-assert) $(empty-strings-x) : $(x-empty-strings) ;
313 $(not-equality-assert-i) x : $(x-empty-strings) ;
314 $(not-equality-assert) x : $(empty-strings-x) ;
315 $(not-equality-assert-i) x : $(x-empty-strings) ;
316 $(not-equality-assert-i) x "" : $(x-empty-strings) ;
317 $(equality-assert) x "" "" : $(x-empty-strings) ;
318 $(not-equality-assert) x : $(empty-strings-x) ;
319 $(not-equality-assert) "" x : $(empty-strings-x) ;
320 $(equality-assert) "" "" x : $(empty-strings-x) ;
328 run-equality-test equal : ignore-trailing-empty-strings ;
329 run-equality-test exact-equal ;