summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2017-12-24 19:02:18 -0500
committerBradley Sepos <[email protected]>2017-12-24 19:02:18 -0500
commit87c14947448aa4d51b4c4f552dadf9b18bf463ce (patch)
tree599edc720a0b40776a5e9b250ee8ccaa04b9cda1 /test
parentc69482d83ddb032b5cbbcc442976ed4dbdb586f4 (diff)
cli: Don't throttle non-tty output. #1067
Diffstat (limited to 'test')
-rw-r--r--test/test.c9
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 );
}