From: Jim Meyering Date: Tue, 11 Aug 1998 17:35:57 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: FILEUTILS-3_16u~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40178d3a7733ef78a9a9b0e06fc535ec0e5dbc97;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/tests/stty/simple-1 b/tests/stty/simple-1 index 0dcd027bef..ffeee8147c 100755 --- a/tests/stty/simple-1 +++ b/tests/stty/simple-1 @@ -10,7 +10,14 @@ fi saved_state=.saved-state $STTY --save > $saved_state || exit 1 -trap "status=$?; echo here; $STTY `cat $saved_state`; exit $status" 0 1 2 3 15 +trap "status=$?; $STTY `cat $saved_state`; exit $status" 0 1 2 3 15 $STTY `cat $saved_state` || exit 1 +# Build a list of all boolean options stty accepts on this system. +options=`stty -a|tail +2|tr ';' '\012'|sed 's/ =.*//;s/^ //'|tr -s ' -' '\012'` + +for opt in $options; do + echo $opt +done + exit 0