test-list.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to
  5. * deal in the Software without restriction, including without limitation the
  6. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  7. * sell copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  18. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  19. * IN THE SOFTWARE.
  20. */
  21. TEST_DECLARE (platform_output)
  22. TEST_DECLARE (callback_order)
  23. TEST_DECLARE (close_order)
  24. TEST_DECLARE (run_once)
  25. TEST_DECLARE (run_nowait)
  26. TEST_DECLARE (loop_alive)
  27. TEST_DECLARE (loop_stop)
  28. TEST_DECLARE (loop_update_time)
  29. TEST_DECLARE (barrier_1)
  30. TEST_DECLARE (barrier_2)
  31. TEST_DECLARE (barrier_3)
  32. TEST_DECLARE (condvar_1)
  33. TEST_DECLARE (condvar_2)
  34. TEST_DECLARE (condvar_3)
  35. TEST_DECLARE (condvar_4)
  36. TEST_DECLARE (condvar_5)
  37. TEST_DECLARE (semaphore_1)
  38. TEST_DECLARE (semaphore_2)
  39. TEST_DECLARE (semaphore_3)
  40. TEST_DECLARE (tty)
  41. TEST_DECLARE (stdio_over_pipes)
  42. TEST_DECLARE (ipc_listen_before_write)
  43. TEST_DECLARE (ipc_listen_after_write)
  44. #ifndef _WIN32
  45. TEST_DECLARE (ipc_send_recv_pipe)
  46. #endif
  47. TEST_DECLARE (ipc_send_recv_tcp)
  48. TEST_DECLARE (ipc_tcp_connection)
  49. TEST_DECLARE (tcp_ping_pong)
  50. TEST_DECLARE (tcp_ping_pong_v6)
  51. TEST_DECLARE (pipe_ping_pong)
  52. TEST_DECLARE (delayed_accept)
  53. TEST_DECLARE (multiple_listen)
  54. TEST_DECLARE (tcp_writealot)
  55. TEST_DECLARE (tcp_try_write)
  56. TEST_DECLARE (tcp_open)
  57. TEST_DECLARE (tcp_connect_error_after_write)
  58. TEST_DECLARE (tcp_shutdown_after_write)
  59. TEST_DECLARE (tcp_bind_error_addrinuse)
  60. TEST_DECLARE (tcp_bind_error_addrnotavail_1)
  61. TEST_DECLARE (tcp_bind_error_addrnotavail_2)
  62. TEST_DECLARE (tcp_bind_error_fault)
  63. TEST_DECLARE (tcp_bind_error_inval)
  64. TEST_DECLARE (tcp_bind_localhost_ok)
  65. TEST_DECLARE (tcp_listen_without_bind)
  66. TEST_DECLARE (tcp_connect_error_fault)
  67. TEST_DECLARE (tcp_connect_timeout)
  68. TEST_DECLARE (tcp_close_while_connecting)
  69. TEST_DECLARE (tcp_close)
  70. TEST_DECLARE (tcp_close_accept)
  71. TEST_DECLARE (tcp_flags)
  72. TEST_DECLARE (tcp_write_to_half_open_connection)
  73. TEST_DECLARE (tcp_unexpected_read)
  74. TEST_DECLARE (tcp_read_stop)
  75. TEST_DECLARE (tcp_bind6_error_addrinuse)
  76. TEST_DECLARE (tcp_bind6_error_addrnotavail)
  77. TEST_DECLARE (tcp_bind6_error_fault)
  78. TEST_DECLARE (tcp_bind6_error_inval)
  79. TEST_DECLARE (tcp_bind6_localhost_ok)
  80. TEST_DECLARE (udp_send_and_recv)
  81. TEST_DECLARE (udp_multicast_join)
  82. TEST_DECLARE (udp_multicast_ttl)
  83. TEST_DECLARE (udp_dgram_too_big)
  84. TEST_DECLARE (udp_dual_stack)
  85. TEST_DECLARE (udp_ipv6_only)
  86. TEST_DECLARE (udp_options)
  87. TEST_DECLARE (udp_open)
  88. TEST_DECLARE (pipe_bind_error_addrinuse)
  89. TEST_DECLARE (pipe_bind_error_addrnotavail)
  90. TEST_DECLARE (pipe_bind_error_inval)
  91. TEST_DECLARE (pipe_listen_without_bind)
  92. TEST_DECLARE (pipe_connect_bad_name)
  93. TEST_DECLARE (pipe_connect_to_file)
  94. TEST_DECLARE (pipe_server_close)
  95. TEST_DECLARE (connection_fail)
  96. TEST_DECLARE (connection_fail_doesnt_auto_close)
  97. TEST_DECLARE (shutdown_close_tcp)
  98. TEST_DECLARE (shutdown_close_pipe)
  99. TEST_DECLARE (shutdown_eof)
  100. TEST_DECLARE (callback_stack)
  101. TEST_DECLARE (error_message)
  102. TEST_DECLARE (timer)
  103. TEST_DECLARE (timer_init)
  104. TEST_DECLARE (timer_again)
  105. TEST_DECLARE (timer_start_twice)
  106. TEST_DECLARE (timer_order)
  107. TEST_DECLARE (timer_huge_timeout)
  108. TEST_DECLARE (timer_huge_repeat)
  109. TEST_DECLARE (timer_run_once)
  110. TEST_DECLARE (timer_from_check)
  111. TEST_DECLARE (idle_starvation)
  112. TEST_DECLARE (loop_handles)
  113. TEST_DECLARE (get_loadavg)
  114. TEST_DECLARE (walk_handles)
  115. TEST_DECLARE (watcher_cross_stop)
  116. TEST_DECLARE (ref)
  117. TEST_DECLARE (idle_ref)
  118. TEST_DECLARE (async_ref)
  119. TEST_DECLARE (prepare_ref)
  120. TEST_DECLARE (check_ref)
  121. TEST_DECLARE (unref_in_prepare_cb)
  122. TEST_DECLARE (timer_ref)
  123. TEST_DECLARE (timer_ref2)
  124. TEST_DECLARE (fs_event_ref)
  125. TEST_DECLARE (fs_poll_ref)
  126. TEST_DECLARE (tcp_ref)
  127. TEST_DECLARE (tcp_ref2)
  128. TEST_DECLARE (tcp_ref2b)
  129. TEST_DECLARE (tcp_ref3)
  130. TEST_DECLARE (tcp_ref4)
  131. TEST_DECLARE (udp_ref)
  132. TEST_DECLARE (udp_ref2)
  133. TEST_DECLARE (udp_ref3)
  134. TEST_DECLARE (pipe_ref)
  135. TEST_DECLARE (pipe_ref2)
  136. TEST_DECLARE (pipe_ref3)
  137. TEST_DECLARE (pipe_ref4)
  138. TEST_DECLARE (process_ref)
  139. TEST_DECLARE (has_ref)
  140. TEST_DECLARE (active)
  141. TEST_DECLARE (embed)
  142. TEST_DECLARE (async)
  143. TEST_DECLARE (async_null_cb)
  144. TEST_DECLARE (get_currentexe)
  145. TEST_DECLARE (process_title)
  146. TEST_DECLARE (cwd_and_chdir)
  147. TEST_DECLARE (get_memory)
  148. TEST_DECLARE (hrtime)
  149. TEST_DECLARE (getaddrinfo_fail)
  150. TEST_DECLARE (getaddrinfo_basic)
  151. TEST_DECLARE (getaddrinfo_concurrent)
  152. TEST_DECLARE (getsockname_tcp)
  153. TEST_DECLARE (getsockname_udp)
  154. TEST_DECLARE (fail_always)
  155. TEST_DECLARE (pass_always)
  156. TEST_DECLARE (spawn_fails)
  157. TEST_DECLARE (spawn_exit_code)
  158. TEST_DECLARE (spawn_stdout)
  159. TEST_DECLARE (spawn_stdin)
  160. TEST_DECLARE (spawn_stdio_greater_than_3)
  161. TEST_DECLARE (spawn_ignored_stdio)
  162. TEST_DECLARE (spawn_and_kill)
  163. TEST_DECLARE (spawn_detached)
  164. TEST_DECLARE (spawn_and_kill_with_std)
  165. TEST_DECLARE (spawn_and_ping)
  166. TEST_DECLARE (spawn_preserve_env)
  167. TEST_DECLARE (spawn_setuid_fails)
  168. TEST_DECLARE (spawn_setgid_fails)
  169. TEST_DECLARE (spawn_stdout_to_file)
  170. TEST_DECLARE (spawn_stdout_and_stderr_to_file)
  171. TEST_DECLARE (spawn_auto_unref)
  172. TEST_DECLARE (fs_poll)
  173. TEST_DECLARE (kill)
  174. TEST_DECLARE (fs_file_noent)
  175. TEST_DECLARE (fs_file_nametoolong)
  176. TEST_DECLARE (fs_file_loop)
  177. TEST_DECLARE (fs_file_async)
  178. TEST_DECLARE (fs_file_sync)
  179. TEST_DECLARE (fs_async_dir)
  180. TEST_DECLARE (fs_async_sendfile)
  181. TEST_DECLARE (fs_fstat)
  182. TEST_DECLARE (fs_chmod)
  183. TEST_DECLARE (fs_chown)
  184. TEST_DECLARE (fs_link)
  185. TEST_DECLARE (fs_readlink)
  186. TEST_DECLARE (fs_symlink)
  187. TEST_DECLARE (fs_symlink_dir)
  188. TEST_DECLARE (fs_utime)
  189. TEST_DECLARE (fs_futime)
  190. TEST_DECLARE (fs_file_open_append)
  191. TEST_DECLARE (fs_stat_missing_path)
  192. TEST_DECLARE (fs_read_file_eof)
  193. TEST_DECLARE (fs_event_watch_dir)
  194. TEST_DECLARE (fs_event_watch_file)
  195. TEST_DECLARE (fs_event_watch_file_twice)
  196. TEST_DECLARE (fs_event_watch_file_current_dir)
  197. TEST_DECLARE (fs_event_no_callback_after_close)
  198. TEST_DECLARE (fs_event_no_callback_on_close)
  199. TEST_DECLARE (fs_event_immediate_close)
  200. TEST_DECLARE (fs_event_close_with_pending_event)
  201. TEST_DECLARE (fs_event_close_in_callback)
  202. TEST_DECLARE (fs_event_start_and_close)
  203. TEST_DECLARE (fs_event_error_reporting)
  204. TEST_DECLARE (fs_readdir_empty_dir)
  205. TEST_DECLARE (fs_readdir_file)
  206. TEST_DECLARE (fs_open_dir)
  207. TEST_DECLARE (fs_rename_to_existing_file)
  208. TEST_DECLARE (threadpool_queue_work_simple)
  209. TEST_DECLARE (threadpool_queue_work_einval)
  210. TEST_DECLARE (threadpool_multiple_event_loops)
  211. TEST_DECLARE (threadpool_cancel_getaddrinfo)
  212. TEST_DECLARE (threadpool_cancel_work)
  213. TEST_DECLARE (threadpool_cancel_fs)
  214. TEST_DECLARE (threadpool_cancel_single)
  215. TEST_DECLARE (thread_local_storage)
  216. TEST_DECLARE (thread_mutex)
  217. TEST_DECLARE (thread_rwlock)
  218. TEST_DECLARE (thread_create)
  219. TEST_DECLARE (dlerror)
  220. TEST_DECLARE (poll_duplex)
  221. TEST_DECLARE (poll_unidirectional)
  222. TEST_DECLARE (poll_close)
  223. TEST_DECLARE (ip4_addr)
  224. TEST_DECLARE (ip6_addr_link_local)
  225. #ifdef _WIN32
  226. TEST_DECLARE (spawn_detect_pipe_name_collisions_on_windows)
  227. TEST_DECLARE (argument_escaping)
  228. TEST_DECLARE (environment_creation)
  229. TEST_DECLARE (listen_with_simultaneous_accepts)
  230. TEST_DECLARE (listen_no_simultaneous_accepts)
  231. TEST_DECLARE (fs_stat_root)
  232. TEST_DECLARE (iocp)
  233. #else
  234. TEST_DECLARE (emfile)
  235. TEST_DECLARE (close_fd)
  236. TEST_DECLARE (spawn_setuid_setgid)
  237. TEST_DECLARE (we_get_signal)
  238. TEST_DECLARE (we_get_signals)
  239. TEST_DECLARE (signal_multiple_loops)
  240. #endif
  241. #ifdef __APPLE__
  242. TEST_DECLARE (osx_select)
  243. #endif
  244. HELPER_DECLARE (tcp4_echo_server)
  245. HELPER_DECLARE (tcp6_echo_server)
  246. HELPER_DECLARE (udp4_echo_server)
  247. HELPER_DECLARE (pipe_echo_server)
  248. TASK_LIST_START
  249. TEST_OUTPUT_ENTRY (platform_output)
  250. #if 0
  251. TEST_ENTRY (callback_order)
  252. #endif
  253. TEST_ENTRY (close_order)
  254. TEST_ENTRY (run_once)
  255. TEST_ENTRY (run_nowait)
  256. TEST_ENTRY (loop_alive)
  257. TEST_ENTRY (loop_stop)
  258. TEST_ENTRY (loop_update_time)
  259. TEST_ENTRY (barrier_1)
  260. TEST_ENTRY (barrier_2)
  261. TEST_ENTRY (barrier_3)
  262. TEST_ENTRY (condvar_1)
  263. TEST_ENTRY (condvar_2)
  264. TEST_ENTRY (condvar_3)
  265. TEST_ENTRY (condvar_4)
  266. TEST_ENTRY (condvar_5)
  267. TEST_ENTRY (semaphore_1)
  268. TEST_ENTRY (semaphore_2)
  269. TEST_ENTRY (semaphore_3)
  270. TEST_ENTRY (pipe_connect_bad_name)
  271. TEST_ENTRY (pipe_connect_to_file)
  272. TEST_ENTRY (pipe_server_close)
  273. TEST_ENTRY (tty)
  274. TEST_ENTRY (stdio_over_pipes)
  275. TEST_ENTRY (ipc_listen_before_write)
  276. TEST_ENTRY (ipc_listen_after_write)
  277. #ifndef _WIN32
  278. TEST_ENTRY (ipc_send_recv_pipe)
  279. #endif
  280. TEST_ENTRY (ipc_send_recv_tcp)
  281. TEST_ENTRY (ipc_tcp_connection)
  282. TEST_ENTRY (tcp_ping_pong)
  283. TEST_HELPER (tcp_ping_pong, tcp4_echo_server)
  284. TEST_ENTRY (tcp_ping_pong_v6)
  285. TEST_HELPER (tcp_ping_pong_v6, tcp6_echo_server)
  286. TEST_ENTRY (pipe_ping_pong)
  287. TEST_HELPER (pipe_ping_pong, pipe_echo_server)
  288. TEST_ENTRY (delayed_accept)
  289. TEST_ENTRY (multiple_listen)
  290. TEST_ENTRY (tcp_writealot)
  291. TEST_HELPER (tcp_writealot, tcp4_echo_server)
  292. TEST_ENTRY (tcp_try_write)
  293. TEST_ENTRY (tcp_open)
  294. TEST_HELPER (tcp_open, tcp4_echo_server)
  295. TEST_ENTRY (tcp_shutdown_after_write)
  296. TEST_HELPER (tcp_shutdown_after_write, tcp4_echo_server)
  297. TEST_ENTRY (tcp_connect_error_after_write)
  298. TEST_ENTRY (tcp_bind_error_addrinuse)
  299. TEST_ENTRY (tcp_bind_error_addrnotavail_1)
  300. TEST_ENTRY (tcp_bind_error_addrnotavail_2)
  301. TEST_ENTRY (tcp_bind_error_fault)
  302. TEST_ENTRY (tcp_bind_error_inval)
  303. TEST_ENTRY (tcp_bind_localhost_ok)
  304. TEST_ENTRY (tcp_listen_without_bind)
  305. TEST_ENTRY (tcp_connect_error_fault)
  306. TEST_ENTRY (tcp_connect_timeout)
  307. TEST_ENTRY (tcp_close_while_connecting)
  308. TEST_ENTRY (tcp_close)
  309. TEST_ENTRY (tcp_close_accept)
  310. TEST_ENTRY (tcp_flags)
  311. TEST_ENTRY (tcp_write_to_half_open_connection)
  312. TEST_ENTRY (tcp_unexpected_read)
  313. TEST_ENTRY (tcp_read_stop)
  314. TEST_HELPER (tcp_read_stop, tcp4_echo_server)
  315. TEST_ENTRY (tcp_bind6_error_addrinuse)
  316. TEST_ENTRY (tcp_bind6_error_addrnotavail)
  317. TEST_ENTRY (tcp_bind6_error_fault)
  318. TEST_ENTRY (tcp_bind6_error_inval)
  319. TEST_ENTRY (tcp_bind6_localhost_ok)
  320. TEST_ENTRY (udp_send_and_recv)
  321. TEST_ENTRY (udp_dgram_too_big)
  322. TEST_ENTRY (udp_dual_stack)
  323. TEST_ENTRY (udp_ipv6_only)
  324. TEST_ENTRY (udp_options)
  325. TEST_ENTRY (udp_multicast_join)
  326. TEST_ENTRY (udp_multicast_ttl)
  327. TEST_ENTRY (udp_open)
  328. TEST_HELPER (udp_open, udp4_echo_server)
  329. TEST_ENTRY (pipe_bind_error_addrinuse)
  330. TEST_ENTRY (pipe_bind_error_addrnotavail)
  331. TEST_ENTRY (pipe_bind_error_inval)
  332. TEST_ENTRY (pipe_listen_without_bind)
  333. TEST_ENTRY (connection_fail)
  334. TEST_ENTRY (connection_fail_doesnt_auto_close)
  335. TEST_ENTRY (shutdown_close_tcp)
  336. TEST_HELPER (shutdown_close_tcp, tcp4_echo_server)
  337. TEST_ENTRY (shutdown_close_pipe)
  338. TEST_HELPER (shutdown_close_pipe, pipe_echo_server)
  339. TEST_ENTRY (shutdown_eof)
  340. TEST_HELPER (shutdown_eof, tcp4_echo_server)
  341. TEST_ENTRY (callback_stack)
  342. TEST_HELPER (callback_stack, tcp4_echo_server)
  343. TEST_ENTRY (error_message)
  344. TEST_ENTRY (timer)
  345. TEST_ENTRY (timer_init)
  346. TEST_ENTRY (timer_again)
  347. TEST_ENTRY (timer_start_twice)
  348. TEST_ENTRY (timer_order)
  349. TEST_ENTRY (timer_huge_timeout)
  350. TEST_ENTRY (timer_huge_repeat)
  351. TEST_ENTRY (timer_run_once)
  352. TEST_ENTRY (timer_from_check)
  353. TEST_ENTRY (idle_starvation)
  354. TEST_ENTRY (ref)
  355. TEST_ENTRY (idle_ref)
  356. TEST_ENTRY (fs_poll_ref)
  357. TEST_ENTRY (async_ref)
  358. TEST_ENTRY (prepare_ref)
  359. TEST_ENTRY (check_ref)
  360. TEST_ENTRY (unref_in_prepare_cb)
  361. TEST_ENTRY (timer_ref)
  362. TEST_ENTRY (timer_ref2)
  363. TEST_ENTRY (fs_event_ref)
  364. TEST_ENTRY (tcp_ref)
  365. TEST_ENTRY (tcp_ref2)
  366. TEST_ENTRY (tcp_ref2b)
  367. TEST_ENTRY (tcp_ref3)
  368. TEST_HELPER (tcp_ref3, tcp4_echo_server)
  369. TEST_ENTRY (tcp_ref4)
  370. TEST_HELPER (tcp_ref4, tcp4_echo_server)
  371. TEST_ENTRY (udp_ref)
  372. TEST_ENTRY (udp_ref2)
  373. TEST_ENTRY (udp_ref3)
  374. TEST_HELPER (udp_ref3, udp4_echo_server)
  375. TEST_ENTRY (pipe_ref)
  376. TEST_ENTRY (pipe_ref2)
  377. TEST_ENTRY (pipe_ref3)
  378. TEST_HELPER (pipe_ref3, pipe_echo_server)
  379. TEST_ENTRY (pipe_ref4)
  380. TEST_HELPER (pipe_ref4, pipe_echo_server)
  381. TEST_ENTRY (process_ref)
  382. TEST_ENTRY (has_ref)
  383. TEST_ENTRY (loop_handles)
  384. TEST_ENTRY (walk_handles)
  385. TEST_ENTRY (watcher_cross_stop)
  386. TEST_ENTRY (active)
  387. TEST_ENTRY (embed)
  388. TEST_ENTRY (async)
  389. TEST_ENTRY (async_null_cb)
  390. TEST_ENTRY (get_currentexe)
  391. TEST_ENTRY (process_title)
  392. TEST_ENTRY (cwd_and_chdir)
  393. TEST_ENTRY (get_memory)
  394. TEST_ENTRY (get_loadavg)
  395. TEST_ENTRY (hrtime)
  396. TEST_ENTRY (getaddrinfo_fail)
  397. TEST_ENTRY (getaddrinfo_basic)
  398. TEST_ENTRY (getaddrinfo_concurrent)
  399. TEST_ENTRY (getsockname_tcp)
  400. TEST_ENTRY (getsockname_udp)
  401. TEST_ENTRY (poll_duplex)
  402. TEST_ENTRY (poll_unidirectional)
  403. TEST_ENTRY (poll_close)
  404. TEST_ENTRY (spawn_fails)
  405. TEST_ENTRY (spawn_exit_code)
  406. TEST_ENTRY (spawn_stdout)
  407. TEST_ENTRY (spawn_stdin)
  408. TEST_ENTRY (spawn_stdio_greater_than_3)
  409. TEST_ENTRY (spawn_ignored_stdio)
  410. TEST_ENTRY (spawn_and_kill)
  411. TEST_ENTRY (spawn_detached)
  412. TEST_ENTRY (spawn_and_kill_with_std)
  413. TEST_ENTRY (spawn_and_ping)
  414. TEST_ENTRY (spawn_preserve_env)
  415. TEST_ENTRY (spawn_setuid_fails)
  416. TEST_ENTRY (spawn_setgid_fails)
  417. TEST_ENTRY (spawn_stdout_to_file)
  418. TEST_ENTRY (spawn_stdout_and_stderr_to_file)
  419. TEST_ENTRY (spawn_auto_unref)
  420. TEST_ENTRY (fs_poll)
  421. TEST_ENTRY (kill)
  422. #ifdef _WIN32
  423. TEST_ENTRY (spawn_detect_pipe_name_collisions_on_windows)
  424. TEST_ENTRY (argument_escaping)
  425. TEST_ENTRY (environment_creation)
  426. TEST_ENTRY (listen_with_simultaneous_accepts)
  427. TEST_ENTRY (listen_no_simultaneous_accepts)
  428. TEST_ENTRY (fs_stat_root)
  429. TEST_ENTRY (iocp)
  430. #else
  431. TEST_ENTRY (emfile)
  432. TEST_ENTRY (close_fd)
  433. TEST_ENTRY (spawn_setuid_setgid)
  434. TEST_ENTRY (we_get_signal)
  435. TEST_ENTRY (we_get_signals)
  436. TEST_ENTRY (signal_multiple_loops)
  437. #endif
  438. #ifdef __APPLE__
  439. TEST_ENTRY (osx_select)
  440. #endif
  441. TEST_ENTRY (fs_file_noent)
  442. TEST_ENTRY (fs_file_nametoolong)
  443. TEST_ENTRY (fs_file_loop)
  444. TEST_ENTRY (fs_file_async)
  445. TEST_ENTRY (fs_file_sync)
  446. TEST_ENTRY (fs_async_dir)
  447. TEST_ENTRY (fs_async_sendfile)
  448. TEST_ENTRY (fs_fstat)
  449. TEST_ENTRY (fs_chmod)
  450. TEST_ENTRY (fs_chown)
  451. TEST_ENTRY (fs_utime)
  452. TEST_ENTRY (fs_futime)
  453. TEST_ENTRY (fs_readlink)
  454. TEST_ENTRY (fs_symlink)
  455. TEST_ENTRY (fs_symlink_dir)
  456. TEST_ENTRY (fs_stat_missing_path)
  457. TEST_ENTRY (fs_read_file_eof)
  458. TEST_ENTRY (fs_file_open_append)
  459. TEST_ENTRY (fs_event_watch_dir)
  460. TEST_ENTRY (fs_event_watch_file)
  461. TEST_ENTRY (fs_event_watch_file_twice)
  462. TEST_ENTRY (fs_event_watch_file_current_dir)
  463. TEST_ENTRY (fs_event_no_callback_after_close)
  464. TEST_ENTRY (fs_event_no_callback_on_close)
  465. TEST_ENTRY (fs_event_immediate_close)
  466. TEST_ENTRY (fs_event_close_with_pending_event)
  467. TEST_ENTRY (fs_event_close_in_callback)
  468. TEST_ENTRY (fs_event_start_and_close)
  469. TEST_ENTRY (fs_event_error_reporting)
  470. TEST_ENTRY (fs_readdir_empty_dir)
  471. TEST_ENTRY (fs_readdir_file)
  472. TEST_ENTRY (fs_open_dir)
  473. TEST_ENTRY (fs_rename_to_existing_file)
  474. TEST_ENTRY (threadpool_queue_work_simple)
  475. TEST_ENTRY (threadpool_queue_work_einval)
  476. TEST_ENTRY (threadpool_multiple_event_loops)
  477. TEST_ENTRY (threadpool_cancel_getaddrinfo)
  478. TEST_ENTRY (threadpool_cancel_work)
  479. TEST_ENTRY (threadpool_cancel_fs)
  480. TEST_ENTRY (threadpool_cancel_single)
  481. TEST_ENTRY (thread_local_storage)
  482. TEST_ENTRY (thread_mutex)
  483. TEST_ENTRY (thread_rwlock)
  484. TEST_ENTRY (thread_create)
  485. TEST_ENTRY (dlerror)
  486. TEST_ENTRY (ip4_addr)
  487. TEST_ENTRY (ip6_addr_link_local)
  488. #if 0
  489. /* These are for testing the test runner. */
  490. TEST_ENTRY (fail_always)
  491. TEST_ENTRY (pass_always)
  492. #endif
  493. TASK_LIST_END