From b9ca4fe720955cb545a00645af2d3c4c536ec2de Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 11 Aug 1998 17:30:46 +0000 Subject: [PATCH] . --- tests/stty/simple-1 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 tests/stty/simple-1 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 -- 2.47.3