diff options
author | Ondřej Vašík <ovasik@redhat.com> | 2013-02-05 15:00:47 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2013-02-05 16:05:54 +0000 |
commit | 4b84062d66d395be290312053701e6d11cd3d9cc (patch) | |
tree | a1f2915fd7362aa1b869e972af4a7cccf5a55f73 /tests | |
parent | 51b3ba842d1196f165e242d77e1d5f092d3b840d (diff) | |
download | coreutils-4b84062d66d395be290312053701e6d11cd3d9cc.tar.gz coreutils-4b84062d66d395be290312053701e6d11cd3d9cc.tar.bz2 coreutils-4b84062d66d395be290312053701e6d11cd3d9cc.zip |
stty: add support for DTR/DSR hardware control flow
Originally requested in Red Hat bugzilla #445213.
* src/stty.c (mode_info): Add support for DTR/DSR hardware flow control,
if available.
* doc/coreutils.texi: Document it.
* tests/misc/stty.sh: Add it to the list of serial options to avoid.
* NEWS: Mention the improvement.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/stty.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/stty.sh b/tests/misc/stty.sh index 0657a7472..2f9b9a3b8 100755 --- a/tests/misc/stty.sh +++ b/tests/misc/stty.sh @@ -52,7 +52,7 @@ for opt in $options; do # other serial control settings give the same error. So skip them. # Also on ppc*|sparc* glibc platforms 'icanon' gives the same error. # See: http://debbugs.gnu.org/7228#14 - case $opt in parenb|parodd|cstopb|crtscts|icanon) continue;; esac + case $opt in parenb|parodd|cstopb|crtscts|cdtrdsr|icanon) continue;; esac stty $opt || fail=1 |