1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Check for the fixed stty option-parsing bugs.

This commit is contained in:
Paul Eggert
2004-09-05 07:22:21 +00:00
parent 9be806694a
commit a806fcf640

View File

@@ -30,7 +30,12 @@ stty --save > $saved_state || fail=1
stty `cat $saved_state` || fail=1
# This would segfault prior to sh-utils-2.0j.
stty erase -
stty erase - || fail=1
# These would improperly ignore invalid options through coreutils 5.2.1.
stty -F 2>/dev/null && fail=1
stty -raw -F no/such/file 2>/dev/null && fail=1
stty -raw -a 2>/dev/null && fail=1
# Build a list of all boolean options stty accepts on this system.
options=`stty -a|tail -n +2|tr ';' '\n'|sed '/ = /d;s/^ //;s/-//g'`