citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit d70c9720a774570d7377b5fd01949eeb8251056d
parent 452662ef8340312aff445cade9d00f66ca75dea1
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun,  8 Jan 2017 05:32:02 -0700

t: remove last remnants of shell

Diffstat:
D.proverc | 3---
Dt/utils.subr | 39---------------------------------------
Rt/libtap.subr -> tt/libtap.subr | 0
3 files changed, 0 insertions(+), 42 deletions(-)

diff --git a/.proverc b/.proverc @@ -1,3 +0,0 @@ -# Test suite is part Shell and part Perl. ---ext '.t' ---ext '.sh' diff --git a/t/utils.subr b/t/utils.subr @@ -1,39 +0,0 @@ -. t/libtap.subr - -treedir=`pwd` -export PATH="$treedir/compilers:$treedir:${PATH}" -export CITRUN_PROCDIR="procdir/" - -tmpdir=`mktemp -d /tmp/citrun.XXXXXXXXXX` || exit 1 -cd $tmpdir - -strip_preamble() -{ - file="${1}" - tail -n +39 $file.citrun > $file.citrun_nohdr -} - -strip_log() -{ - sed -e "s,^.*: ,," \ - -e "s,'.*',''," \ - -e "s,(.*),()," \ - -e "/Milliseconds/d" \ - < ${1} > ${1}.stripped -} - -strip_millis() -{ - ok "is 'Milliseconds' sanitized" sed -i -e "/Milliseconds spent/d" $1 -} - -empty_main() -{ - cat <<EOF > main.c || exit 1 -int -main(void) -{ - return 0; -} -EOF -} diff --git a/t/libtap.subr b/tt/libtap.subr