libuv/test
Andy Fiddaman 612c28b89f
sunos: fs-event callback can be called after uv_close() (#3542)
On illumos and Solaris, fs events are implemented with
PORT_SOURCE_FILE type event ports. These are one-shot so
need re-arming each time they fire. Once they are armed
and an event occurs, the kernel removes them from the current
cache list and puts them on an event queue to be read by
the application.

There's a window in closing one of these ports when it could
have triggered and be pending delivery. In that case, the
attempt to disarm (dissociate) the event will fail with ENOENT
but libuv still goes ahead and closes down the handle. In
particular, the close callback (uv_close() argument) will be
called but then the event will subsequently be delivered if
the loop is still active; this should not happen.
2022-04-11 11:25:59 -04:00
..
fixtures
benchmark-async-pummel.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-async.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-fs-stat.c
benchmark-getaddrinfo.c
benchmark-list.h test: fix benchmark-ping-udp (#2817) 2022-02-13 01:04:41 -05:00
benchmark-loop-count.c
benchmark-million-async.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-million-timers.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-multi-accept.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-ping-pongs.c
benchmark-ping-udp.c test: fix benchmark-ping-udp (#2817) 2022-02-13 01:04:41 -05:00
benchmark-pound.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-pump.c
benchmark-queue-work.c bench: add uv_queue_work ping-pong measurement (#3425) 2022-02-13 00:40:35 -05:00
benchmark-sizes.c
benchmark-spawn.c
benchmark-tcp-write-batch.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
benchmark-thread.c
benchmark-udp-pummel.c test: remove string + int warning on udp-pummel 2021-04-04 17:16:44 +02:00
blackhole-server.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
echo-server.c unix,stream: fix loop hang after uv_shutdown 2021-07-13 10:54:02 -04:00
run-benchmarks.c benchmark: remove unreachable code 2021-04-04 17:47:37 +02:00
run-tests.c test: remove flaky test ipc_closed_handle (#3464) 2022-02-08 14:18:10 +01:00
runner-unix.c test: use closefd in runner-unix.c (#3497) 2022-02-27 11:49:58 +01:00
runner-unix.h
runner-win.c
runner-win.h
runner.c test: log to stdout to conform TAP spec 2021-05-12 18:45:47 -04:00
runner.h
task.h asan: fix some tests (#3323) 2021-10-10 00:57:43 +02:00
test-active.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-async-null-cb.c
test-async.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-barrier.c
test-callback-order.c
test-callback-stack.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-close-fd.c
test-close-order.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-condvar.c
test-connect-unspecified.c
test-connection-fail.c
test-cwd-and-chdir.c
test-default-loop-close.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-delayed-accept.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-dlerror.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-eintr-handling.c
test-embed.c
test-emfile.c
test-env-vars.c
test-error.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-fail-always.c
test-fork.c
test-fs-copyfile.c asan: fix some tests (#3323) 2021-10-10 00:57:43 +02:00
test-fs-event.c sunos: fs-event callback can be called after uv_close() (#3542) 2022-04-11 11:25:59 -04:00
test-fs-fd-hash.c
test-fs-open-flags.c win,fs: fix error code in uv_fs_read() and uv_fs_write() (#3303) 2021-10-16 15:11:52 +02:00
test-fs-poll.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-fs-readdir.c asan: fix some tests (#3323) 2021-10-10 00:57:43 +02:00
test-fs.c test: fix flaky uv_fs_lutime test (#3424) 2022-01-31 16:25:05 -05:00
test-get-currentexe.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-get-loadavg.c
test-get-memory.c
test-get-passwd.c core: change uv_get_password uid/gid to unsigned (#3476) 2022-02-22 10:59:06 -05:00
test-getaddrinfo.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-gethostname.c
test-getnameinfo.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-getsockname.c test: separate some static variables by test cases (#3567) 2022-04-11 11:22:37 -04:00
test-getters-setters.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-gettimeofday.c
test-handle-fileno.c
test-homedir.c
test-hrtime.c
test-idle.c unix,win: fix UV_RUN_ONCE + uv_idle_stop loop hang (#3590) 2022-04-06 15:49:21 +02:00
test-idna.c idna: fix OOB read in punycode decoder 2021-07-02 14:07:07 -04:00
test-ip4-addr.c
test-ip6-addr.c run test named ip6_sin6_len 2021-07-21 12:39:13 -04:00
test-ip-name.c unix,win: add uv_ip_name to get name from sockaddr (#3368) 2021-11-25 10:05:15 +01:00
test-ipc-heavy-traffic-deadlock-bug.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-ipc-send-recv.c test: fix ipc_send_recv_pipe flakiness (#3478) 2022-02-20 12:17:13 +01:00
test-ipc.c test: remove flaky test ipc_closed_handle (#3464) 2022-02-08 14:18:10 +01:00
test-list.h sunos: fs-event callback can be called after uv_close() (#3542) 2022-04-11 11:25:59 -04:00
test-loop-alive.c
test-loop-close.c
test-loop-configure.c
test-loop-handles.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-loop-stop.c
test-loop-time.c loop: add pending work to loop-alive check (#3466) 2022-02-13 00:12:11 -05:00
test-metrics.c
test-multiple-listen.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-mutexes.c
test-not-readable-nor-writable-on-read-error.c Re-merge "unix,stream: clear read/write states on close/eof" 2021-05-21 16:20:07 -04:00
test-not-writable-after-shutdown.c Re-merge "unix,stream: clear read/write states on close/eof" 2021-05-21 16:20:07 -04:00
test-osx-select.c
test-pass-always.c
test-ping-pong.c asan: fix some tests (#3323) 2021-10-10 00:57:43 +02:00
test-pipe-bind-error.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-pipe-close-stdout-read-stdin.c
test-pipe-connect-error.c asan: fix some tests (#3323) 2021-10-10 00:57:43 +02:00
test-pipe-connect-multiple.c
test-pipe-connect-prepare.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-pipe-getsockname.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-pipe-pending-instances.c
test-pipe-sendmsg.c
test-pipe-server-close.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-pipe-set-fchmod.c
test-pipe-set-non-blocking.c win,fs: consider broken pipe error a normal EOF (#3053) 2022-02-13 01:40:10 -05:00
test-platform-output.c unix,win: add uv_available_parallelism() (#3499) 2022-03-04 22:35:14 +01:00
test-poll-close-doesnt-corrupt-stack.c
test-poll-close.c
test-poll-closesocket.c
test-poll-multiple-handles.c
test-poll-oob.c
test-poll.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-process-priority.c
test-process-title-threadsafe.c
test-process-title.c
test-queue-foreach-delete.c
test-random.c
test-readable-on-eof.c stream: permit read after seeing EOF (#3361) 2021-11-24 19:25:47 -05:00
test-ref.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-run-nowait.c
test-run-once.c
test-semaphore.c
test-shutdown-close.c
test-shutdown-eof.c
test-shutdown-simultaneous.c unix,stream: fix loop hang after uv_shutdown 2021-07-13 10:54:02 -04:00
test-shutdown-twice.c
test-signal-multiple-loops.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-signal-pending-on-close.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-signal.c
test-socket-buffer-size.c
test-spawn.c process: monitor for exit with kqueue on BSDs (#3441) 2022-01-31 14:49:22 -05:00
test-stdio-over-pipes.c
test-strscpy.c
test-strtok.c core: add thread-safe strtok implementation (#3553) 2022-03-22 15:15:00 -04:00
test-tcp-alloc-cb-fail.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-bind6-error.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-bind-error.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-close-accept.c
test-tcp-close-after-read-timeout.c win: fix unexpected ECONNRESET error on TCP socket (#3584) 2022-04-07 21:44:45 -04:00
test-tcp-close-reset.c
test-tcp-close-while-connecting.c
test-tcp-close.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-connect6-error.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-connect-error-after-write.c
test-tcp-connect-error.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-connect-timeout.c win,test: fix a few typos 2021-11-30 23:22:31 -05:00
test-tcp-create-socket-early.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-flags.c
test-tcp-oob.c
test-tcp-open.c test: fix stack-use-after-scope 2021-04-04 17:29:54 +02:00
test-tcp-read-stop-start.c
test-tcp-read-stop.c
test-tcp-rst.c test: remove unused declarations in tcp_rst test (#3574) 2022-03-22 15:13:10 -04:00
test-tcp-shutdown-after-write.c
test-tcp-try-write-error.c
test-tcp-try-write.c
test-tcp-unexpected-read.c
test-tcp-write-after-connect.c
test-tcp-write-fail.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-write-queue-order.c
test-tcp-write-to-half-open-connection.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tcp-writealot.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-test-macros.c
test-thread-equal.c thread: initialize uv_thread_self for all threads (#3357) 2021-11-24 19:34:57 -05:00
test-thread.c unix: don't allow too small thread stack size (#3423) 2022-01-17 09:36:26 +01:00
test-threadpool-cancel.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-threadpool.c
test-timer-again.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-timer-from-check.c
test-timer.c test: separate some static variables by test cases (#3567) 2022-04-11 11:22:37 -04:00
test-tmpdir.c
test-tty-duplicate-key.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-tty-escape-sequence-processing.c build: add windows build to CI (#3212) 2021-10-16 12:25:48 +02:00
test-tty.c
test-udp-alloc-cb-fail.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-bind.c
test-udp-connect6.c ibmi: Implement UDP disconnect (#3561) 2022-03-18 12:03:47 +00:00
test-udp-connect.c ibmi: Implement UDP disconnect (#3561) 2022-03-18 12:03:47 +00:00
test-udp-create-socket-early.c
test-udp-dgram-too-big.c
test-udp-ipv6.c
test-udp-mmsg.c test: fix flaky udp_mmsg test 2022-02-17 17:34:36 +01:00
test-udp-multicast-interface6.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-multicast-interface.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-multicast-join6.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-multicast-join.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-multicast-ttl.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-open.c test: fix stack-use-after-scope 2021-04-04 17:29:54 +02:00
test-udp-options.c
test-udp-send-and-recv.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-send-hang-loop.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-send-immediate.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-udp-send-unreachable.c test: fix test-udp-send-unreachable 2021-02-17 10:30:13 +01:00
test-udp-sendmmsg-error.c
test-udp-try-send.c test: move to ASSERT_NULL and ASSERT_NOT_NULL test macros 2021-02-14 10:05:46 +01:00
test-uname.c
test-walk-handles.c
test-watcher-cross-stop.c