10e552da7Schristos /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
20e552da7Schristos *
30e552da7Schristos * Permission is hereby granted, free of charge, to any person obtaining a copy
40e552da7Schristos * of this software and associated documentation files (the "Software"), to
50e552da7Schristos * deal in the Software without restriction, including without limitation the
60e552da7Schristos * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
70e552da7Schristos * sell copies of the Software, and to permit persons to whom the Software is
80e552da7Schristos * furnished to do so, subject to the following conditions:
90e552da7Schristos *
100e552da7Schristos * The above copyright notice and this permission notice shall be included in
110e552da7Schristos * all copies or substantial portions of the Software.
120e552da7Schristos *
130e552da7Schristos * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
140e552da7Schristos * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
150e552da7Schristos * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
160e552da7Schristos * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
170e552da7Schristos * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
180e552da7Schristos * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
190e552da7Schristos * IN THE SOFTWARE.
200e552da7Schristos */
210e552da7Schristos
220e552da7Schristos #include "uv.h"
230e552da7Schristos #include "task.h"
240e552da7Schristos
250e552da7Schristos
260e552da7Schristos static int timer_cb_called;
270e552da7Schristos
280e552da7Schristos
timer_cb(uv_timer_t * timer)290e552da7Schristos static void timer_cb(uv_timer_t* timer) {
300e552da7Schristos timer_cb_called++;
310e552da7Schristos uv_close((uv_handle_t*) timer, NULL);
320e552da7Schristos }
330e552da7Schristos
340e552da7Schristos
TEST_IMPL(default_loop_close)350e552da7Schristos TEST_IMPL(default_loop_close) {
360e552da7Schristos uv_loop_t* loop;
370e552da7Schristos uv_timer_t timer_handle;
380e552da7Schristos
390e552da7Schristos loop = uv_default_loop();
40*5f2f4271Schristos ASSERT_NOT_NULL(loop);
410e552da7Schristos
420e552da7Schristos ASSERT(0 == uv_timer_init(loop, &timer_handle));
430e552da7Schristos ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 1, 0));
440e552da7Schristos ASSERT(0 == uv_run(loop, UV_RUN_DEFAULT));
450e552da7Schristos ASSERT(1 == timer_cb_called);
460e552da7Schristos ASSERT(0 == uv_loop_close(loop));
470e552da7Schristos
480e552da7Schristos loop = uv_default_loop();
49*5f2f4271Schristos ASSERT_NOT_NULL(loop);
500e552da7Schristos
510e552da7Schristos ASSERT(0 == uv_timer_init(loop, &timer_handle));
520e552da7Schristos ASSERT(0 == uv_timer_start(&timer_handle, timer_cb, 1, 0));
530e552da7Schristos ASSERT(0 == uv_run(loop, UV_RUN_DEFAULT));
540e552da7Schristos ASSERT(2 == timer_cb_called);
550e552da7Schristos ASSERT(0 == uv_loop_close(loop));
560e552da7Schristos
570e552da7Schristos MAKE_VALGRIND_HAPPY();
580e552da7Schristos return 0;
590e552da7Schristos }
60