Lines Matching refs:not

276 then	err_exit 'large integer constants not working'
290 then err_exit '2**3 not working'
293 then err_exit '2**3*2 not working'
296 then err_exit '4**3**2 not working'
299 then err_exit '(4**3)**2 not working'
304 then err_exit '-Z3 not treated as decimal'
308 (( x >= 0 )) || err_exit 'unsigned integer not working'
309 (( $x >= 0 )) || err_exit 'unsigned integer not working as $x'
316 $SHELL -c '(( +1 == 1))' 2> /dev/null || err_exit 'unary + not working'
325 (( x > 1.999 && x < 2.001 )) || err_exit 'composite functions not working'
333 (( x == n )) || err_exit 'let with zero filled fields not working'
334 (( y == n )) || err_exit '((...)) with zero filled fields not working'
336 [[ $(($x)) == 10 && $((1$x)) == 1010 ]] || err_exit 'zero filled fields not preserving leading zero…
338 … == 10 && $(let y=1$x;print $y) == 1010 ]] || err_exit 'zero filled fields not preserving leading …
353 (( x == 8 )) || err_exit 'leading zeros not treated as octal arithmetic'
354 (( $x == 8 )) || err_exit 'leading zeros not treated as octal arithmetic with $x'
357 (( x == 10 )) || err_exit 'leading zeros not ignored for arithmetic'
358 (( $x == 10 )) || err_exit 'leading zeros not ignored for arithmetic with $x'
360 (( i == 10 )) || err_exit 'leading zeros not ignored for arithmetic assignment'
361 (( ${x:0:1} == 0 )) || err_exit 'leading zero should not be stripped for x:a:b'
363 (( c$x == 3 )) || err_exit 'leading zero with variable should not be stripped'
429 [[ $foo == 123456789.2 ]] || err_exit 'typeset -F1 not working correctly'
441 …r x=3 y=2; (( (y += x += 2) == 7 && x==5))' 2> /dev/null || err_exit '((y += x += 2)) not working'
442 $SHELL -c 'b=0; [[ $((b?a=1:b=9)) == 9 ]]' 2> /dev/null || err_exit 'b?a=1:b=9 not working'
473 else err_exit 'Inf and NaN not working'
489 …arr[0]=(z=3); ((x.arr[0].z=2))' 2> /dev/null || err_exit '(((x.arr[0].z=2)) should not be an error'
536 (( a[1]==1)) || err_exit 'a[1] not incremented'
541 (( a[0]==1)) || err_exit 'a[0] not incremented'
546 (( a[2]==1)) || err_exit 'a[0] not 1'
552 (( a[0] == 0 )) || err_exit 'a[0] not 0'
553 (( a[1] == 1 )) || err_exit 'a[1] not 1'