diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/stty.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/misc/stty.sh b/tests/misc/stty.sh index 5c2575522..5e39b72e5 100755 --- a/tests/misc/stty.sh +++ b/tests/misc/stty.sh @@ -57,6 +57,10 @@ for opt in $options; do cstopb|crtscts|cdtrdsr|icanon) continue;; esac + # This is listed as supported on FreeBSD + # but the ioctl returns ENOTTY. + test $opt = extproc && continue + stty $opt || fail=1 # Likewise, 'stty -cread' would fail, so skip that, too. |