We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f57588 commit f188d92Copy full SHA for f188d92
src/libstd/timer.rs
@@ -153,7 +153,7 @@ mod test {
153
#[test]
154
fn test_gl_timer_sleep_stress1() {
155
let hl_loop = uv::global_loop::get();
156
- for iter::repeat(200u) {
+ for iter::repeat(50u) {
157
sleep(hl_loop, 1u);
158
}
159
@@ -242,7 +242,7 @@ mod test {
242
let test_ch = core::comm::chan(test_po);
243
244
do task::spawn() {
245
- delayed_send(hl_loop, 1000u, test_ch, expected);
+ delayed_send(hl_loop, 50u, test_ch, expected);
246
};
247
248
match recv_timeout(hl_loop, 1u, test_po) {
0 commit comments