From 72bbf5d702475e7f42ce551857b1e0ab2e8ddff5 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Mon, 25 Feb 2013 09:43:34 -0800 Subject: [PATCH] test: don't rewind_cursor when using tap_output --- test/runner.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/runner.c b/test/runner.c index 1b9a9809..6e4b4f67 100644 --- a/test/runner.c +++ b/test/runner.c @@ -102,7 +102,9 @@ int run_tests(int timeout, int benchmark_output) { continue; } - rewind_cursor(); + if (!tap_output) + rewind_cursor(); + if (!benchmark_output && !tap_output) { log_progress(total, passed, failed, task->task_name); } @@ -115,7 +117,8 @@ int run_tests(int timeout, int benchmark_output) { current++; } - rewind_cursor(); + if (!tap_output) + rewind_cursor(); if (!benchmark_output && !tap_output) { log_progress(total, passed, failed, "Done.\n");