scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit ff7b2304339d798260de8826fadcef2282eb2618
parent 0f60a24d55df32893a8dfa56930a3b0eb4dfb186
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 19 Feb 2018 09:58:44 +0000

[ar/tests] Fix chktest.sh

It was copied from tests/scc and it had some wrong bits

Diffstat:
Mtests/ar/execute/chktest.sh | 2+-
Mtests/scc/execute/chktest.sh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/ar/execute/chktest.sh b/tests/ar/execute/chktest.sh @@ -1,7 +1,7 @@ #!/bin/sh ttyflags=`stty -g` -trap "stty $ttyflags;tabs -8;rm -f a.out; exit 1" 0 2 3 15 +trap "stty $ttyflags;tabs -8" 0 2 3 15 stty tabs tabs 40 ulimit -c 40 diff --git a/tests/scc/execute/chktest.sh b/tests/scc/execute/chktest.sh @@ -2,7 +2,7 @@ file=${1?' empty input file'} ttyflags=`stty -g` -trap "stty $ttyflags;tabs -8;rm -f a.out; exit 1" 0 1 2 3 15 +trap "stty $ttyflags;tabs -8;rm -f a.out" 0 1 2 3 15 stty tabs tabs 40 ulimit -c 0