From: Jim Meyering Date: Tue, 11 Aug 1998 17:30:46 +0000 (+0000) Subject: . X-Git-Tag: FILEUTILS-3_16u~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9ca4fe720955cb545a00645af2d3c4c536ec2de;p=thirdparty%2Fcoreutils.git . --- diff --git a/tests/stty/simple-1 b/tests/stty/simple-1 new file mode 100755 index 0000000000..0dcd027bef --- /dev/null +++ b/tests/stty/simple-1 @@ -0,0 +1,16 @@ +#! /bin/sh +# Make sure stty can parse most of its options. + +: ${STTY=stty} + +if test "$VERBOSE" = yes; then + set -x + $RM --version +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 +$STTY `cat $saved_state` || exit 1 + +exit 0