From 87c14947448aa4d51b4c4f552dadf9b18bf463ce Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Sun, 24 Dec 2017 19:02:18 -0500 Subject: [PATCH] cli: Don't throttle non-tty output. #1067 --- test/test.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/test.c b/test/test.c index 2cfca80cf..3b599134e 100644 --- a/test/test.c +++ b/test/test.c @@ -396,14 +396,7 @@ void EventLoop(hb_handle_t *h, hb_dict_t *preset_dict) } } #endif - if (stdout_tty == 0) - { - hb_snooze(2000); - } - else - { - hb_snooze(200); - } + hb_snooze(200); HandleEvents( h, preset_dict ); } -- 2.40.0