chiark
/
gitweb
/
~mdw
/
termux-packages
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
libgpg-error: workaround no stdout atexit with constructor prior to N (#1017)
[termux-packages]
/
packages
/
coreutils
/
tests
/
tails-c-flag.sh
1
# https://github.com/termux/termux-app/issues/232
2
set -e -u
3
4
RESULT=$(echo -n 123456 | tail -c 3)
5
if [ "$RESULT" != 456 ]; then
6
echo "Test failed - expectd 456, got $RESULT"
7
exit 1
8
fi