citrun

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

commit 94adff7ef22bbf09cc9bd601ce1b891c89581ab4
parent 0ce53d6a770c471c6861bcec07608b0f1b3a39bd
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Sat,  7 Jan 2017 00:53:40 -0800

t: delete test that's already covered elsewhere

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

diff --git a/t/e2e_stdout.sh b/t/e2e_stdout.sh @@ -1,39 +0,0 @@ -#!/bin/sh -u -# -# Simple program that prints output. -# -. t/utils.subr -plan 5 - - -cat <<EOF > hello.c -#include <stdio.h> - -int main(void) { - printf("hello, world!"); - return 0; -} -EOF - -cat <<EOF > check.good -Summary: - 1 Source files used as input - 1 Application link commands - 1 Rewrite successes - 1 Rewritten source compile successes - -Totals: - 7 Lines of source code - 1 Function definitions - 1 Return statement values - 1 Call expressions - 9 Total statements -EOF - -ok "is instrumented compile successful" cc -o hello hello.c - -ok "citrun_check" citrun_check -o check.out -strip_millis check.out -ok "citrun_check diff" diff -u check.good check.out - -ok_program "stdout compare" 0 "hello, world!" ./hello