2013-06-27 14:28:00 +02:00
|
|
|
# Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl>
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
|
|
# copyright notice and this permission notice appear in all copies.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
|
|
|
-I$(top_srcdir)/src
|
|
|
|
|
2017-07-22 17:50:57 +02:00
|
|
|
include_HEADERS=include/uv.h
|
|
|
|
|
|
|
|
uvincludedir = $(includedir)/uv
|
2019-01-17 11:16:39 -05:00
|
|
|
uvinclude_HEADERS = include/uv/errno.h \
|
|
|
|
include/uv/threadpool.h \
|
|
|
|
include/uv/version.h
|
2013-06-27 14:28:00 +02:00
|
|
|
|
2013-07-02 20:49:15 -07:00
|
|
|
CLEANFILES =
|
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
lib_LTLIBRARIES = libuv.la
|
2022-01-31 16:50:32 -05:00
|
|
|
libuv_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
libuv_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 1:0:0
|
2013-06-27 14:28:00 +02:00
|
|
|
libuv_la_SOURCES = src/fs-poll.c \
|
2013-09-12 10:26:24 +02:00
|
|
|
src/heap-inl.h \
|
2018-10-20 01:28:16 +02:00
|
|
|
src/idna.c \
|
2019-03-16 12:39:45 -04:00
|
|
|
src/idna.h \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/inet.c \
|
2013-08-31 04:54:22 -05:00
|
|
|
src/queue.h \
|
2019-06-22 15:18:17 +02:00
|
|
|
src/random.c \
|
2018-12-03 09:29:23 +01:00
|
|
|
src/strscpy.c \
|
|
|
|
src/strscpy.h \
|
2023-03-06 17:57:25 -05:00
|
|
|
src/thread-common.c \
|
2014-06-17 22:07:19 +02:00
|
|
|
src/threadpool.c \
|
2018-06-14 19:22:57 +02:00
|
|
|
src/timer.c \
|
2017-11-30 00:29:47 +01:00
|
|
|
src/uv-data-getter-setters.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/uv-common.c \
|
|
|
|
src/uv-common.h \
|
2022-03-22 19:15:00 +00:00
|
|
|
src/version.c \
|
|
|
|
src/strtok.c \
|
|
|
|
src/strtok.h
|
2013-07-29 19:08:33 -04:00
|
|
|
|
2013-09-20 10:50:19 -07:00
|
|
|
if SUNOS
|
2015-01-05 17:13:52 +01:00
|
|
|
# Can't be turned into a CC_CHECK_CFLAGS in configure.ac, it makes compilers
|
|
|
|
# on other platforms complain that the argument is unused during compilation.
|
2016-09-14 14:42:09 -07:00
|
|
|
libuv_la_CFLAGS += -pthreads
|
2013-09-20 10:50:19 -07:00
|
|
|
endif
|
|
|
|
|
2013-07-29 19:08:33 -04:00
|
|
|
if WINNT
|
|
|
|
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/win.h include/uv/tree.h
|
2013-07-29 19:08:33 -04:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/src/win \
|
2016-04-11 11:11:47 -04:00
|
|
|
-DWIN32_LEAN_AND_MEAN \
|
2020-04-29 00:02:14 +02:00
|
|
|
-D_WIN32_WINNT=0x0602
|
2013-07-29 19:08:33 -04:00
|
|
|
libuv_la_SOURCES += src/win/async.c \
|
2013-08-31 04:54:22 -05:00
|
|
|
src/win/atomicops-inl.h \
|
2013-07-29 19:08:33 -04:00
|
|
|
src/win/core.c \
|
2016-07-26 16:14:30 +02:00
|
|
|
src/win/detect-wakeup.c \
|
2013-07-29 19:08:33 -04:00
|
|
|
src/win/dl.c \
|
|
|
|
src/win/error.c \
|
|
|
|
src/win/fs-event.c \
|
|
|
|
src/win/fs.c \
|
|
|
|
src/win/getaddrinfo.c \
|
2014-05-11 12:51:08 +02:00
|
|
|
src/win/getnameinfo.c \
|
2013-07-29 19:08:33 -04:00
|
|
|
src/win/handle.c \
|
2013-08-31 04:54:22 -05:00
|
|
|
src/win/handle-inl.h \
|
|
|
|
src/win/internal.h \
|
2013-07-29 19:08:33 -04:00
|
|
|
src/win/loop-watcher.c \
|
|
|
|
src/win/pipe.c \
|
|
|
|
src/win/poll.c \
|
|
|
|
src/win/process-stdio.c \
|
|
|
|
src/win/process.c \
|
2013-08-31 04:54:22 -05:00
|
|
|
src/win/req-inl.h \
|
2013-07-29 19:08:33 -04:00
|
|
|
src/win/signal.c \
|
|
|
|
src/win/stream.c \
|
2013-08-31 04:54:22 -05:00
|
|
|
src/win/stream-inl.h \
|
2013-07-29 19:08:33 -04:00
|
|
|
src/win/tcp.c \
|
|
|
|
src/win/thread.c \
|
|
|
|
src/win/tty.c \
|
|
|
|
src/win/udp.c \
|
|
|
|
src/win/util.c \
|
|
|
|
src/win/winapi.c \
|
2013-08-31 04:54:22 -05:00
|
|
|
src/win/winapi.h \
|
|
|
|
src/win/winsock.c \
|
|
|
|
src/win/winsock.h
|
2013-07-29 19:08:33 -04:00
|
|
|
|
|
|
|
else # WINNT
|
|
|
|
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/unix.h
|
2013-07-29 19:08:33 -04:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/src/unix
|
|
|
|
libuv_la_SOURCES += src/unix/async.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/unix/core.c \
|
|
|
|
src/unix/dl.c \
|
|
|
|
src/unix/fs.c \
|
|
|
|
src/unix/getaddrinfo.c \
|
2014-05-11 12:51:08 +02:00
|
|
|
src/unix/getnameinfo.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/unix/internal.h \
|
|
|
|
src/unix/loop-watcher.c \
|
|
|
|
src/unix/loop.c \
|
|
|
|
src/unix/pipe.c \
|
|
|
|
src/unix/poll.c \
|
|
|
|
src/unix/process.c \
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/random-devurandom.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/unix/signal.c \
|
|
|
|
src/unix/stream.c \
|
|
|
|
src/unix/tcp.c \
|
|
|
|
src/unix/thread.c \
|
|
|
|
src/unix/tty.c \
|
|
|
|
src/unix/udp.c
|
|
|
|
|
2013-07-29 19:08:33 -04:00
|
|
|
endif # WINNT
|
|
|
|
|
2014-09-19 17:48:00 -07:00
|
|
|
EXTRA_DIST = test/fixtures/empty_file \
|
2015-01-06 11:47:34 +11:00
|
|
|
test/fixtures/load_error.node \
|
2019-06-20 12:05:59 +02:00
|
|
|
test/fixtures/lorem_ipsum.txt \
|
2022-09-22 09:25:55 +02:00
|
|
|
test/fixtures/one_file/one_file \
|
2015-01-06 11:47:34 +11:00
|
|
|
include \
|
|
|
|
docs \
|
|
|
|
img \
|
|
|
|
CONTRIBUTING.md \
|
|
|
|
LICENSE \
|
2023-01-19 17:46:25 +01:00
|
|
|
LICENSE-extra \
|
2020-04-07 18:24:05 +02:00
|
|
|
README.md
|
2015-01-06 11:47:34 +11:00
|
|
|
|
|
|
|
|
2014-09-19 17:48:00 -07:00
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
TESTS = test/run-tests
|
|
|
|
check_PROGRAMS = test/run-tests
|
2022-01-31 16:50:32 -05:00
|
|
|
test_run_tests_CFLAGS = $(AM_CFLAGS)
|
2016-09-14 14:42:09 -07:00
|
|
|
|
2024-02-05 11:04:05 -05:00
|
|
|
if WINNT
|
|
|
|
check-am: test/run-tests_no_ext
|
|
|
|
test/run-tests_no_ext: test/run-tests$(EXEEXT)
|
|
|
|
cp test/run-tests$(EXEEXT) test/run-tests_no_ext
|
|
|
|
endif
|
|
|
|
|
2016-09-14 14:42:09 -07:00
|
|
|
if SUNOS
|
|
|
|
# Can't be turned into a CC_CHECK_CFLAGS in configure.ac, it makes compilers
|
|
|
|
# on other platforms complain that the argument is unused during compilation.
|
|
|
|
test_run_tests_CFLAGS += -pthreads
|
|
|
|
endif
|
|
|
|
|
2022-01-31 16:50:32 -05:00
|
|
|
test_run_tests_LDFLAGS = $(AM_LDFLAGS)
|
2013-06-27 14:28:00 +02:00
|
|
|
test_run_tests_SOURCES = test/blackhole-server.c \
|
|
|
|
test/echo-server.c \
|
|
|
|
test/run-tests.c \
|
|
|
|
test/runner.c \
|
|
|
|
test/runner.h \
|
|
|
|
test/task.h \
|
|
|
|
test/test-active.c \
|
|
|
|
test/test-async.c \
|
2013-08-12 08:42:49 +02:00
|
|
|
test/test-async-null-cb.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-barrier.c \
|
|
|
|
test/test-callback-stack.c \
|
2013-11-08 05:15:55 +01:00
|
|
|
test/test-close-fd.c \
|
2013-05-29 09:51:04 +02:00
|
|
|
test/test-close-order.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-condvar.c \
|
2017-12-28 10:42:11 +01:00
|
|
|
test/test-connect-unspecified.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-connection-fail.c \
|
|
|
|
test/test-cwd-and-chdir.c \
|
2014-09-08 21:47:50 +02:00
|
|
|
test/test-default-loop-close.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-delayed-accept.c \
|
|
|
|
test/test-dlerror.c \
|
2018-01-19 01:24:43 +01:00
|
|
|
test/test-eintr-handling.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-embed.c \
|
2013-11-25 01:30:11 +01:00
|
|
|
test/test-emfile.c \
|
2017-02-28 00:21:26 -05:00
|
|
|
test/test-env-vars.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-error.c \
|
|
|
|
test/test-fail-always.c \
|
2017-07-14 21:47:36 -04:00
|
|
|
test/test-fs-copyfile.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-fs-event.c \
|
|
|
|
test/test-fs-poll.c \
|
|
|
|
test/test-fs.c \
|
2015-01-30 11:04:03 -08:00
|
|
|
test/test-fs-readdir.c \
|
2019-05-09 01:18:05 +01:00
|
|
|
test/test-fs-fd-hash.c \
|
|
|
|
test/test-fs-open-flags.c \
|
unix: make loops and watchers usable after fork()
Added the uv_loop_fork() API that must be called in a child process to
continue using an existing loop. Internally this calls a uv__io_fork
function for each supported platform, similar to the way
uv__platform_loop_init works.
After this call, existing and new IO, async and signal watchers will
contiue working as before on all platforms, as will the
threadpool (although any threads it was using are of course gone).
On Linux and BSDs that use kqueue, existing and new fsevent watchers
will also continue to work as expected. On OS X, though, directory
fsevents will not be able to use the optimized CoreFoundation path if
they had already been used in the parent process, instead falling back
to the kqueue path used on other BSDs.
Existing fsevent watchers will not function on AIX or SunOS. This
could be relatively easily fixed by someone with AIX knowledge in the
future, but SunOS will require some additional work to keep track if
the watchers.
A new test file, test/test-fork.c, was added to contain fork-related
tests to verify functionality in the child process.
PR-URL: https://github.com/libuv/libuv/pull/846
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
2016-04-22 14:16:31 -05:00
|
|
|
test/test-fork.c \
|
2017-11-30 00:29:47 +01:00
|
|
|
test/test-getters-setters.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-get-currentexe.c \
|
|
|
|
test/test-get-loadavg.c \
|
|
|
|
test/test-get-memory.c \
|
2016-03-01 15:41:01 -05:00
|
|
|
test/test-get-passwd.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-getaddrinfo.c \
|
2017-05-12 13:41:22 -04:00
|
|
|
test/test-gethostname.c \
|
2014-05-11 12:51:08 +02:00
|
|
|
test/test-getnameinfo.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-getsockname.c \
|
2019-03-18 17:41:13 -04:00
|
|
|
test/test-gettimeofday.c \
|
2014-08-22 09:57:43 +02:00
|
|
|
test/test-handle-fileno.c \
|
2015-05-12 09:17:19 -04:00
|
|
|
test/test-homedir.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-hrtime.c \
|
|
|
|
test/test-idle.c \
|
2018-10-20 01:28:16 +02:00
|
|
|
test/test-idna.c \
|
2024-03-21 09:23:08 +01:00
|
|
|
test/test-iouring-pollhup.c \
|
2013-12-13 01:01:38 +08:00
|
|
|
test/test-ip4-addr.c \
|
2013-03-14 22:20:32 +01:00
|
|
|
test/test-ip6-addr.c \
|
2021-11-25 17:05:15 +08:00
|
|
|
test/test-ip-name.c \
|
2018-05-20 15:25:27 -07:00
|
|
|
test/test-ipc-heavy-traffic-deadlock-bug.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-ipc-send-recv.c \
|
|
|
|
test/test-ipc.c \
|
|
|
|
test/test-list.h \
|
|
|
|
test/test-loop-handles.c \
|
2013-05-17 13:29:26 -07:00
|
|
|
test/test-loop-alive.c \
|
2014-02-17 22:37:20 +01:00
|
|
|
test/test-loop-close.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-loop-stop.c \
|
2013-12-10 09:13:34 +01:00
|
|
|
test/test-loop-time.c \
|
2014-12-25 14:11:55 +01:00
|
|
|
test/test-loop-configure.c \
|
2020-03-26 17:15:13 -06:00
|
|
|
test/test-metrics.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-multiple-listen.c \
|
|
|
|
test/test-mutexes.c \
|
2021-05-21 16:20:07 -04:00
|
|
|
test/test-not-readable-nor-writable-on-read-error.c \
|
|
|
|
test/test-not-writable-after-shutdown.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-osx-select.c \
|
|
|
|
test/test-pass-always.c \
|
|
|
|
test/test-ping-pong.c \
|
|
|
|
test/test-pipe-bind-error.c \
|
|
|
|
test/test-pipe-connect-error.c \
|
2015-08-20 10:49:21 +02:00
|
|
|
test/test-pipe-connect-multiple.c \
|
2015-05-08 09:33:47 +02:00
|
|
|
test/test-pipe-connect-prepare.c \
|
2013-12-17 00:15:54 +01:00
|
|
|
test/test-pipe-getsockname.c \
|
2015-08-20 10:53:20 +02:00
|
|
|
test/test-pipe-pending-instances.c \
|
2013-12-22 14:45:00 +04:00
|
|
|
test/test-pipe-sendmsg.c \
|
2013-12-21 02:42:48 -08:00
|
|
|
test/test-pipe-server-close.c \
|
2014-08-14 16:38:56 -07:00
|
|
|
test/test-pipe-close-stdout-read-stdin.c \
|
2015-02-09 12:53:52 +01:00
|
|
|
test/test-pipe-set-non-blocking.c \
|
2017-06-22 18:59:34 +02:00
|
|
|
test/test-pipe-set-fchmod.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-platform-output.c \
|
2016-09-09 00:42:43 +02:00
|
|
|
test/test-poll.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-poll-close.c \
|
2014-12-14 11:58:38 -03:00
|
|
|
test/test-poll-close-doesnt-corrupt-stack.c \
|
2014-05-12 16:48:52 +02:00
|
|
|
test/test-poll-closesocket.c \
|
poll,unix: ensure safety of rapid fd reuse
Consider the following scenario:
uv_poll_init(loop, poll, fd);
uv_poll_start(poll, UV_READABLE, cb);
// the cb gets invoked etc.
uv_poll_stop(poll);
close(fd);
fd = allocate_new_socket(); // allocate_new_socket() is assigned the same fd by "bad luck" from the OS
// some time later:
uv_poll_init(loop, otherpoll, fd);
uv_poll_start(otherpoll, UV_READABLE, cb);
uv_close(poll); // uv__io_stop: Assertion `loop->watchers[w->fd] == w' failed.
According to documentation, "however the fd can be safely closed
immediately after a call to uv_poll_stop() or uv_close()."
Though, in this scenario, we close()'d our file descriptor, and by
bad luck we got the same file descriptor again and register a new
handle for it and start polling.
Previously that would lead to an assertion failure, if we were to
properly free the original handle via uv_close().
This commit fixes that by moving the check whether a only a single
poll handle is active to uv_poll_start() instead of the stopping
routines.
Fixes: https://github.com/libuv/libuv/issues/1172
Fixes: https://github.com/bwoebi/php-uv/issues/81
Fixes: https://github.com/b2wdigital/aiologger/issues/82
Fixes: https://github.com/invenia/LibPQ.jl/issues/140
PR-URL: https://github.com/libuv/libuv/pull/2686
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jameson Nash <vtjnash@gmail.com>
2020-12-28 17:51:23 +01:00
|
|
|
test/test-poll-multiple-handles.c \
|
2016-09-09 00:42:43 +02:00
|
|
|
test/test-poll-oob.c \
|
2018-08-12 21:59:22 -04:00
|
|
|
test/test-process-priority.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-process-title.c \
|
2017-11-15 15:31:01 +07:00
|
|
|
test/test-process-title-threadsafe.c \
|
2015-09-30 12:47:02 -04:00
|
|
|
test/test-queue-foreach-delete.c \
|
2019-06-22 15:18:17 +02:00
|
|
|
test/test-random.c \
|
2021-11-24 19:25:47 -05:00
|
|
|
test/test-readable-on-eof.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-ref.c \
|
|
|
|
test/test-run-nowait.c \
|
|
|
|
test/test-run-once.c \
|
|
|
|
test/test-semaphore.c \
|
|
|
|
test/test-shutdown-close.c \
|
|
|
|
test/test-shutdown-eof.c \
|
2021-07-13 10:54:02 -04:00
|
|
|
test/test-shutdown-simultaneous.c \
|
2014-02-14 22:27:45 -05:00
|
|
|
test/test-shutdown-twice.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-signal-multiple-loops.c \
|
2019-08-13 23:06:44 +02:00
|
|
|
test/test-signal-pending-on-close.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-signal.c \
|
2014-07-07 14:56:11 +02:00
|
|
|
test/test-socket-buffer-size.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-spawn.c \
|
|
|
|
test/test-stdio-over-pipes.c \
|
2018-12-03 09:29:23 +01:00
|
|
|
test/test-strscpy.c \
|
2022-03-22 19:15:00 +00:00
|
|
|
test/test-strtok.c \
|
2016-08-16 00:15:54 +02:00
|
|
|
test/test-tcp-alloc-cb-fail.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-bind-error.c \
|
|
|
|
test/test-tcp-bind6-error.c \
|
2013-11-13 13:59:42 +01:00
|
|
|
test/test-tcp-close-accept.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-close-while-connecting.c \
|
2022-04-08 09:44:45 +08:00
|
|
|
test/test-tcp-close-after-read-timeout.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-close.c \
|
2019-04-28 12:55:03 +02:00
|
|
|
test/test-tcp-close-reset.c \
|
2015-06-17 00:34:58 +02:00
|
|
|
test/test-tcp-create-socket-early.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-connect-error-after-write.c \
|
|
|
|
test/test-tcp-connect-error.c \
|
|
|
|
test/test-tcp-connect-timeout.c \
|
|
|
|
test/test-tcp-connect6-error.c \
|
|
|
|
test/test-tcp-flags.c \
|
|
|
|
test/test-tcp-open.c \
|
|
|
|
test/test-tcp-read-stop.c \
|
2024-05-21 19:36:49 +08:00
|
|
|
test/test-tcp-reuseport.c \
|
2020-07-28 13:59:08 -04:00
|
|
|
test/test-tcp-read-stop-start.c \
|
2022-03-10 18:53:04 -05:00
|
|
|
test/test-tcp-rst.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-shutdown-after-write.c \
|
|
|
|
test/test-tcp-unexpected-read.c \
|
2015-02-24 16:16:22 +03:00
|
|
|
test/test-tcp-oob.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-write-to-half-open-connection.c \
|
2014-08-21 10:59:35 +02:00
|
|
|
test/test-tcp-write-after-connect.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tcp-writealot.c \
|
2015-05-05 23:09:23 +02:00
|
|
|
test/test-tcp-write-fail.c \
|
2013-12-06 19:10:47 +04:00
|
|
|
test/test-tcp-try-write.c \
|
2022-10-08 16:23:01 +08:00
|
|
|
test/test-tcp-write-in-a-row.c \
|
2019-05-31 12:02:18 +02:00
|
|
|
test/test-tcp-try-write-error.c \
|
2014-07-06 14:43:59 +02:00
|
|
|
test/test-tcp-write-queue-order.c \
|
2020-08-12 22:43:02 +05:30
|
|
|
test/test-test-macros.c \
|
2014-10-04 22:01:03 -07:00
|
|
|
test/test-thread-equal.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-thread.c \
|
2022-10-21 21:18:10 +08:00
|
|
|
test/test-thread-affinity.c \
|
2023-11-14 18:30:46 +08:00
|
|
|
test/test-thread-priority.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-threadpool-cancel.c \
|
|
|
|
test/test-threadpool.c \
|
|
|
|
test/test-timer-again.c \
|
|
|
|
test/test-timer-from-check.c \
|
|
|
|
test/test-timer.c \
|
2016-01-04 16:52:44 -05:00
|
|
|
test/test-tmpdir.c \
|
2019-01-22 19:28:09 +09:00
|
|
|
test/test-tty-duplicate-key.c \
|
2020-02-18 16:02:28 +09:00
|
|
|
test/test-tty-escape-sequence-processing.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-tty.c \
|
2016-08-16 00:15:54 +02:00
|
|
|
test/test-udp-alloc-cb-fail.c \
|
2014-03-31 09:56:37 +02:00
|
|
|
test/test-udp-bind.c \
|
2017-03-20 11:32:25 +01:00
|
|
|
test/test-udp-connect.c \
|
2022-01-03 18:31:29 +08:00
|
|
|
test/test-udp-connect6.c \
|
2015-06-17 00:34:58 +02:00
|
|
|
test/test-udp-create-socket-early.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-udp-dgram-too-big.c \
|
|
|
|
test/test-udp-ipv6.c \
|
2020-07-28 17:14:42 -07:00
|
|
|
test/test-udp-mmsg.c \
|
2014-02-10 08:56:39 +01:00
|
|
|
test/test-udp-multicast-interface.c \
|
2014-03-28 00:39:09 +01:00
|
|
|
test/test-udp-multicast-interface6.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-udp-multicast-join.c \
|
2014-03-17 10:06:25 +01:00
|
|
|
test/test-udp-multicast-join6.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
test/test-udp-multicast-ttl.c \
|
|
|
|
test/test-udp-open.c \
|
|
|
|
test/test-udp-options.c \
|
|
|
|
test/test-udp-send-and-recv.c \
|
2017-04-18 17:59:32 -06:00
|
|
|
test/test-udp-send-hang-loop.c \
|
2014-07-11 22:42:55 +02:00
|
|
|
test/test-udp-send-immediate.c \
|
2020-06-30 12:56:48 +02:00
|
|
|
test/test-udp-sendmmsg-error.c \
|
2014-08-27 21:50:48 +02:00
|
|
|
test/test-udp-send-unreachable.c \
|
2014-06-30 00:01:10 +02:00
|
|
|
test/test-udp-try-send.c \
|
2022-11-08 17:23:40 +08:00
|
|
|
test/test-udp-recv-in-a-row.c \
|
2024-06-20 23:17:17 +08:00
|
|
|
test/test-udp-reuseport.c \
|
2019-01-04 14:04:32 -05:00
|
|
|
test/test-uname.c \
|
2013-11-08 04:15:58 +01:00
|
|
|
test/test-walk-handles.c \
|
|
|
|
test/test-watcher-cross-stop.c
|
2013-06-27 14:28:00 +02:00
|
|
|
test_run_tests_LDADD = libuv.la
|
|
|
|
|
2013-10-11 19:22:42 +02:00
|
|
|
if WINNT
|
|
|
|
test_run_tests_SOURCES += test/runner-win.c \
|
|
|
|
test/runner-win.h
|
|
|
|
else
|
|
|
|
test_run_tests_SOURCES += test/runner-unix.c \
|
|
|
|
test/runner-unix.h
|
|
|
|
endif
|
|
|
|
|
2014-03-12 22:30:24 +01:00
|
|
|
if AIX
|
2019-01-17 11:16:39 -05:00
|
|
|
test_run_tests_CFLAGS += -D_ALL_SOURCE \
|
|
|
|
-D_XOPEN_SOURCE=500 \
|
|
|
|
-D_LINUX_SOURCE_COMPAT
|
2014-03-12 22:30:24 +01:00
|
|
|
endif
|
|
|
|
|
2019-07-15 23:58:25 -05:00
|
|
|
if OS400
|
|
|
|
test_run_tests_CFLAGS += -D_ALL_SOURCE \
|
|
|
|
-D_XOPEN_SOURCE=500 \
|
|
|
|
-D_LINUX_SOURCE_COMPAT
|
|
|
|
endif
|
|
|
|
|
2019-06-07 09:57:06 +02:00
|
|
|
if HAIKU
|
|
|
|
test_run_tests_CFLAGS += -D_BSD_SOURCE
|
|
|
|
endif
|
|
|
|
|
2016-09-08 20:16:38 +02:00
|
|
|
if LINUX
|
|
|
|
test_run_tests_CFLAGS += -D_GNU_SOURCE
|
|
|
|
endif
|
|
|
|
|
2014-03-12 22:30:24 +01:00
|
|
|
if SUNOS
|
2019-02-21 10:24:01 -05:00
|
|
|
test_run_tests_CFLAGS += -D__EXTENSIONS__ \
|
|
|
|
-D_XOPEN_SOURCE=500 \
|
|
|
|
-D_REENTRANT
|
2014-03-12 22:30:24 +01:00
|
|
|
endif
|
2013-10-11 19:22:42 +02:00
|
|
|
|
2016-07-05 18:37:45 -04:00
|
|
|
if OS390
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
test_run_tests_CFLAGS += -D_ISOC99_SOURCE \
|
|
|
|
-D_UNIX03_THREADS \
|
2016-07-05 18:37:45 -04:00
|
|
|
-D_UNIX03_SOURCE \
|
|
|
|
-D_OPEN_SYS_IF_EXT=1 \
|
|
|
|
-D_OPEN_SYS_SOCK_IPV6 \
|
|
|
|
-D_OPEN_MSGQ_EXT \
|
|
|
|
-D_XOPEN_SOURCE_EXTENDED \
|
|
|
|
-D_ALL_SOURCE \
|
|
|
|
-D_LARGE_TIME_API \
|
|
|
|
-D_OPEN_SYS_FILE_EXT \
|
|
|
|
-DPATH_MAX=255 \
|
|
|
|
-qCHARS=signed \
|
|
|
|
-qXPLINK \
|
|
|
|
-qFLOAT=IEEE
|
|
|
|
endif
|
2013-10-11 19:22:42 +02:00
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
if AIX
|
2016-12-02 22:28:22 -05:00
|
|
|
libuv_la_CFLAGS += -D_ALL_SOURCE \
|
|
|
|
-D_XOPEN_SOURCE=500 \
|
|
|
|
-D_LINUX_SOURCE_COMPAT \
|
|
|
|
-D_THREAD_SAFE \
|
|
|
|
-DHAVE_SYS_AHAFS_EVPRODS_H
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/aix.h
|
2017-10-09 09:36:03 +08:00
|
|
|
libuv_la_SOURCES += src/unix/aix.c src/unix/aix-common.c
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
|
|
|
|
2019-07-15 23:58:25 -05:00
|
|
|
if OS400
|
|
|
|
libuv_la_CFLAGS += -D_ALL_SOURCE \
|
|
|
|
-D_XOPEN_SOURCE=500 \
|
|
|
|
-D_LINUX_SOURCE_COMPAT \
|
|
|
|
-D_THREAD_SAFE
|
|
|
|
uvinclude_HEADERS += include/uv/posix.h
|
|
|
|
libuv_la_SOURCES += src/unix/aix-common.c \
|
|
|
|
src/unix/ibmi.c \
|
|
|
|
src/unix/posix-poll.c \
|
2020-02-07 01:45:28 +00:00
|
|
|
src/unix/no-fsevents.c
|
2019-07-15 23:58:25 -05:00
|
|
|
endif
|
|
|
|
|
2014-03-12 16:46:17 +01:00
|
|
|
if ANDROID
|
2020-07-03 15:21:53 +02:00
|
|
|
libuv_la_CFLAGS += -D_GNU_SOURCE
|
2014-03-12 16:46:17 +01:00
|
|
|
endif
|
|
|
|
|
2017-04-06 21:56:34 -04:00
|
|
|
if CYGWIN
|
2018-05-30 13:35:41 +02:00
|
|
|
uvinclude_HEADERS += include/uv/posix.h
|
2017-04-06 21:56:34 -04:00
|
|
|
libuv_la_CFLAGS += -D_GNU_SOURCE
|
|
|
|
libuv_la_SOURCES += src/unix/cygwin.c \
|
|
|
|
src/unix/bsd-ifaddrs.c \
|
|
|
|
src/unix/no-fsevents.c \
|
|
|
|
src/unix/no-proctitle.c \
|
|
|
|
src/unix/posix-hrtime.c \
|
|
|
|
src/unix/posix-poll.c \
|
|
|
|
src/unix/procfs-exepath.c \
|
|
|
|
src/unix/sysinfo-loadavg.c \
|
|
|
|
src/unix/sysinfo-memory.c
|
|
|
|
endif
|
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
if DARWIN
|
2018-10-08 11:14:41 +02:00
|
|
|
uvinclude_HEADERS += include/uv/darwin.h
|
2013-06-27 14:28:00 +02:00
|
|
|
libuv_la_CFLAGS += -D_DARWIN_USE_64_BIT_INODE=1
|
2014-09-07 23:56:15 +01:00
|
|
|
libuv_la_CFLAGS += -D_DARWIN_UNLIMITED_SELECT=1
|
2017-02-20 19:42:00 -05:00
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/unix/darwin-proctitle.c \
|
2020-04-28 20:07:52 +02:00
|
|
|
src/unix/darwin-stub.h \
|
|
|
|
src/unix/darwin.c \
|
2013-06-27 14:28:00 +02:00
|
|
|
src/unix/fsevents.c \
|
|
|
|
src/unix/kqueue.c \
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/proctitle.c \
|
|
|
|
src/unix/random-getentropy.c
|
2016-03-23 23:18:53 +01:00
|
|
|
test_run_tests_LDFLAGS += -lutil
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
|
|
|
|
2014-09-26 20:41:59 +02:00
|
|
|
if DRAGONFLY
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/bsd.h
|
2017-02-20 19:42:00 -05:00
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
2018-10-16 22:04:44 +02:00
|
|
|
src/unix/bsd-proctitle.c \
|
2017-02-20 19:42:00 -05:00
|
|
|
src/unix/freebsd.c \
|
2017-02-16 16:31:42 -05:00
|
|
|
src/unix/kqueue.c \
|
|
|
|
src/unix/posix-hrtime.c
|
2016-03-23 23:18:53 +01:00
|
|
|
test_run_tests_LDFLAGS += -lutil
|
2014-09-26 20:41:59 +02:00
|
|
|
endif
|
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
if FREEBSD
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/bsd.h
|
2017-02-20 19:42:00 -05:00
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
2018-10-16 22:04:44 +02:00
|
|
|
src/unix/bsd-proctitle.c \
|
2017-02-20 19:42:00 -05:00
|
|
|
src/unix/freebsd.c \
|
2017-02-16 16:31:42 -05:00
|
|
|
src/unix/kqueue.c \
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/posix-hrtime.c \
|
|
|
|
src/unix/random-getrandom.c
|
2016-03-23 23:18:53 +01:00
|
|
|
test_run_tests_LDFLAGS += -lutil
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
|
|
|
|
2019-06-07 09:57:06 +02:00
|
|
|
if HAIKU
|
|
|
|
uvinclude_HEADERS += include/uv/posix.h
|
|
|
|
libuv_la_CFLAGS += -D_BSD_SOURCE
|
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
|
|
|
src/unix/haiku.c \
|
|
|
|
src/unix/no-fsevents.c \
|
|
|
|
src/unix/no-proctitle.c \
|
|
|
|
src/unix/posix-hrtime.c \
|
|
|
|
src/unix/posix-poll.c
|
|
|
|
endif
|
|
|
|
|
2018-09-07 10:26:18 +02:00
|
|
|
if HURD
|
|
|
|
uvinclude_HEADERS += include/uv/posix.h
|
2022-02-23 18:04:18 +01:00
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
|
|
|
src/unix/no-fsevents.c \
|
|
|
|
src/unix/no-proctitle.c \
|
2018-09-07 10:26:18 +02:00
|
|
|
src/unix/posix-hrtime.c \
|
2022-02-23 18:04:18 +01:00
|
|
|
src/unix/posix-poll.c \
|
|
|
|
src/unix/hurd.c
|
2018-09-07 10:26:18 +02:00
|
|
|
endif
|
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
if LINUX
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/linux.h
|
2015-01-23 23:43:03 +01:00
|
|
|
libuv_la_CFLAGS += -D_GNU_SOURCE
|
2022-10-02 14:09:42 +02:00
|
|
|
libuv_la_SOURCES += src/unix/linux.c \
|
2017-04-04 16:22:29 -04:00
|
|
|
src/unix/procfs-exepath.c \
|
2017-04-04 15:22:24 -04:00
|
|
|
src/unix/proctitle.c \
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/random-getrandom.c \
|
2022-09-18 13:14:10 +02:00
|
|
|
src/unix/random-sysctl-linux.c
|
2016-03-23 23:18:53 +01:00
|
|
|
test_run_tests_LDFLAGS += -lutil
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
|
|
|
|
2017-04-06 21:56:34 -04:00
|
|
|
if MSYS
|
|
|
|
libuv_la_CFLAGS += -D_GNU_SOURCE
|
|
|
|
libuv_la_SOURCES += src/unix/cygwin.c \
|
|
|
|
src/unix/bsd-ifaddrs.c \
|
|
|
|
src/unix/no-fsevents.c \
|
|
|
|
src/unix/no-proctitle.c \
|
|
|
|
src/unix/posix-hrtime.c \
|
|
|
|
src/unix/posix-poll.c \
|
|
|
|
src/unix/procfs-exepath.c \
|
|
|
|
src/unix/sysinfo-loadavg.c \
|
|
|
|
src/unix/sysinfo-memory.c
|
|
|
|
endif
|
|
|
|
|
2013-06-27 14:28:00 +02:00
|
|
|
if NETBSD
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/bsd.h
|
2017-02-20 19:42:00 -05:00
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
2018-10-16 22:04:44 +02:00
|
|
|
src/unix/bsd-proctitle.c \
|
2017-02-20 19:42:00 -05:00
|
|
|
src/unix/kqueue.c \
|
2017-02-16 16:31:42 -05:00
|
|
|
src/unix/netbsd.c \
|
|
|
|
src/unix/posix-hrtime.c
|
2016-03-23 23:18:53 +01:00
|
|
|
test_run_tests_LDFLAGS += -lutil
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
if OPENBSD
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/bsd.h
|
2017-02-20 19:42:00 -05:00
|
|
|
libuv_la_SOURCES += src/unix/bsd-ifaddrs.c \
|
2018-10-16 22:04:44 +02:00
|
|
|
src/unix/bsd-proctitle.c \
|
2017-02-20 19:42:00 -05:00
|
|
|
src/unix/kqueue.c \
|
2017-02-16 16:31:42 -05:00
|
|
|
src/unix/openbsd.c \
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/posix-hrtime.c \
|
|
|
|
src/unix/random-getentropy.c
|
2016-03-23 23:18:53 +01:00
|
|
|
test_run_tests_LDFLAGS += -lutil
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
if SUNOS
|
2017-07-22 17:50:57 +02:00
|
|
|
uvinclude_HEADERS += include/uv/sunos.h
|
2019-02-21 10:24:01 -05:00
|
|
|
libuv_la_CFLAGS += -D__EXTENSIONS__ \
|
|
|
|
-D_XOPEN_SOURCE=500 \
|
|
|
|
-D_REENTRANT
|
2017-02-20 19:48:25 -05:00
|
|
|
libuv_la_SOURCES += src/unix/no-proctitle.c \
|
|
|
|
src/unix/sunos.c
|
2013-06-27 14:28:00 +02:00
|
|
|
endif
|
2013-07-02 20:49:15 -07:00
|
|
|
|
2016-07-05 18:37:45 -04:00
|
|
|
if OS390
|
|
|
|
libuv_la_CFLAGS += -D_UNIX03_THREADS \
|
|
|
|
-D_UNIX03_SOURCE \
|
|
|
|
-D_OPEN_SYS_IF_EXT=1 \
|
|
|
|
-D_OPEN_MSGQ_EXT \
|
|
|
|
-D_XOPEN_SOURCE_EXTENDED \
|
|
|
|
-D_ALL_SOURCE \
|
|
|
|
-D_LARGE_TIME_API \
|
2019-02-21 06:37:31 +01:00
|
|
|
-D_OPEN_SYS_SOCK_EXT3 \
|
2016-07-05 18:37:45 -04:00
|
|
|
-D_OPEN_SYS_SOCK_IPV6 \
|
|
|
|
-D_OPEN_SYS_FILE_EXT \
|
|
|
|
-DUV_PLATFORM_SEM_T=int \
|
|
|
|
-DPATH_MAX=255 \
|
|
|
|
-qCHARS=signed \
|
|
|
|
-qXPLINK \
|
|
|
|
-qFLOAT=IEEE
|
|
|
|
libuv_la_LDFLAGS += -qXPLINK
|
2022-07-15 11:18:38 +02:00
|
|
|
libuv_la_SOURCES += src/unix/os390.c \
|
2016-08-30 15:20:34 -04:00
|
|
|
src/unix/os390-syscalls.c \
|
|
|
|
src/unix/proctitle.c
|
2016-07-05 18:37:45 -04:00
|
|
|
endif
|
|
|
|
|
2013-12-06 09:43:44 +01:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = @PACKAGE_NAME@.pc
|