citrun

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

commit e4ce80a8181374f2d8303394d338bc61eedfb8a6
parent 630dd8f3688b205ae8dd03f6718673db8add0504
Author: Kyle Milz <kyle@0x30.net>
Date:   Mon, 29 Aug 2016 22:13:05 -0600

t: delete bogus test

Diffstat:
Dt/rt_source.sh | 21---------------------
1 file changed, 0 insertions(+), 21 deletions(-)

diff --git a/t/rt_source.sh b/t/rt_source.sh @@ -1,21 +0,0 @@ -# -# Test that the source files the runtime passed us and we loaded are identical -# to the original source files on disk. -# -echo 1..4 -. test/project.sh - -./program 3 - -$CITRUN_TOOLS/citrun-dump -s one.c > one.c.runtime -$CITRUN_TOOLS/citrun-dump -s two.c > two.c.runtime -$CITRUN_TOOLS/citrun-dump -s three.c > three.c.runtime - -# Bug in parsing source line by line in c++ -echo >> one.c -echo >> two.c -echo >> three.c - -test_diff 2 "one.c diff runtime and disk" one.c one.c.runtime -test_diff 3 "two.c diff runtime and disk" two.c two.c.runtime -test_diff 4 "three.c diff runtime and disk" three.c three.c.runtime