diff options
author | Bradley Sepos <[email protected]> | 2017-12-24 19:02:18 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-12-24 19:02:18 -0500 |
commit | 87c14947448aa4d51b4c4f552dadf9b18bf463ce (patch) | |
tree | 599edc720a0b40776a5e9b250ee8ccaa04b9cda1 | |
parent | c69482d83ddb032b5cbbcc442976ed4dbdb586f4 (diff) |
cli: Don't throttle non-tty output. #1067
-rw-r--r-- | test/test.c | 9 |
1 files changed, 1 insertions, 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 ); } |