Sha256: 8f73e1e973425474537c3056217d0a0367e14e4c4317af708ce12773eed9a986

Contents?: true

Size: 1.69 KB

Versions: 19

Compression:

Stored size: 1.69 KB

Contents

/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */

#include "uv.h"
#include "task.h"

static uv_timer_t timer_handle;

static void timer_cb(uv_timer_t* handle) {
  ASSERT(handle);
  uv_stop(handle->loop);
}


TEST_IMPL(loop_close) {
  int r;
  uv_loop_t loop;

  ASSERT(0 == uv_loop_init(&loop));

  uv_timer_init(&loop, &timer_handle);
  uv_timer_start(&timer_handle, timer_cb, 100, 100);

  ASSERT(UV_EBUSY == uv_loop_close(&loop));

  uv_run(&loop, UV_RUN_DEFAULT);

  uv_close((uv_handle_t*) &timer_handle, NULL);
  r = uv_run(&loop, UV_RUN_DEFAULT);
  ASSERT(r == 0);

  ASSERT(0 == uv_loop_close(&loop));

  return 0;
}

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
libuv-2.0.8 ext/libuv/test/test-loop-close.c
libuv-2.0.6 ext/libuv/test/test-loop-close.c
libuv-2.0.5 ext/libuv/test/test-loop-close.c
libuv-2.0.4 ext/libuv/test/test-loop-close.c
libuv-2.0.3 ext/libuv/test/test-loop-close.c
libuv-2.0.2 ext/libuv/test/test-loop-close.c
libuv-2.0.1 ext/libuv/test/test-loop-close.c
libuv-2.0.0 ext/libuv/test/test-loop-close.c
libuv-1.3.0 ext/libuv/test/test-loop-close.c
libuv-1.2.0 ext/libuv/test/test-loop-close.c
libuv-1.1.3 ext/libuv/test/test-loop-close.c
libuv-1.1.2 ext/libuv/test/test-loop-close.c
libuv-1.1.1 ext/libuv/test/test-loop-close.c
libuv-1.1.0 ext/libuv/test/test-loop-close.c
libuv-1.0.3 ext/libuv/test/test-loop-close.c
libuv-1.0.2 ext/libuv/test/test-loop-close.c
libuv-1.0.0 ext/libuv/test/test-loop-close.c
libuv-0.12.4 ext/libuv/test/test-loop-close.c
libuv-0.12.3 ext/libuv/test/test-loop-close.c