Skip to content

Commit

Permalink
Update bits-info.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git authored Oct 28, 2024
1 parent 579c151 commit 47e55bf
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tools/bits-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1126,15 +1126,17 @@ main()
awk_printf_unsigned_bit="$(convert_max_unsigned_int_to_bit "${_max}")" || awk_printf_unsigned_bit='unknown'

echo '---'
: | cut 2> /dev/null -b "1000000000000000" && echo ok || echo $?
: | cut 2> /dev/null -b "4294967295" && echo ok || echo $?
echo '---'
: | cut 2> /dev/null -b "10000000000000000" && echo ok || echo $?
: | cut 2> /dev/null -b "100000000000000" && echo ok || echo $?
echo '---'
: | cut 2> /dev/null -b "100000000000000000" && echo ok || echo $?
: | cut 2> /dev/null -b "10000000000000" && echo ok || echo $?
echo '---'
: | cut 2> /dev/null -b "1000000000000000000" && echo ok || echo $?
: | cut 2> /dev/null -b "1000000000000" && echo ok || echo $?
echo '---'
: | cut 2> /dev/null -b "9223372036854775807" && echo ok || echo $?
: | cut 2> /dev/null -b "100000000000" && echo ok || echo $?
echo '---'
: | cut 2> /dev/null -b "10000000000" && echo ok || echo $?
echo '---'
exit 0
_max='-1'
Expand Down

0 comments on commit 47e55bf

Please sign in to comment.