1
0

test-list.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  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 (run_once)
  24. TEST_DECLARE (run_nowait)
  25. TEST_DECLARE (loop_stop)
  26. TEST_DECLARE (barrier_1)
  27. TEST_DECLARE (barrier_2)
  28. TEST_DECLARE (barrier_3)
  29. TEST_DECLARE (condvar_1)
  30. TEST_DECLARE (condvar_2)
  31. TEST_DECLARE (condvar_3)
  32. TEST_DECLARE (condvar_4)
  33. TEST_DECLARE (condvar_5)
  34. TEST_DECLARE (semaphore_1)
  35. TEST_DECLARE (semaphore_2)
  36. TEST_DECLARE (semaphore_3)
  37. TEST_DECLARE (tty)
  38. TEST_DECLARE (stdio_over_pipes)
  39. TEST_DECLARE (ipc_listen_before_write)
  40. TEST_DECLARE (ipc_listen_after_write)
  41. #ifndef _WIN32
  42. TEST_DECLARE (ipc_send_recv_pipe)
  43. #endif
  44. TEST_DECLARE (ipc_send_recv_tcp)
  45. TEST_DECLARE (ipc_tcp_connection)
  46. TEST_DECLARE (tcp_ping_pong)
  47. TEST_DECLARE (tcp_ping_pong_v6)
  48. TEST_DECLARE (pipe_ping_pong)
  49. TEST_DECLARE (delayed_accept)
  50. TEST_DECLARE (multiple_listen)
  51. TEST_DECLARE (tcp_writealot)
  52. TEST_DECLARE (tcp_open)
  53. TEST_DECLARE (tcp_connect_error_after_write)
  54. TEST_DECLARE (tcp_shutdown_after_write)
  55. TEST_DECLARE (tcp_bind_error_addrinuse)
  56. TEST_DECLARE (tcp_bind_error_addrnotavail_1)
  57. TEST_DECLARE (tcp_bind_error_addrnotavail_2)
  58. TEST_DECLARE (tcp_bind_error_fault)
  59. TEST_DECLARE (tcp_bind_error_inval)
  60. TEST_DECLARE (tcp_bind_localhost_ok)
  61. TEST_DECLARE (tcp_listen_without_bind)
  62. TEST_DECLARE (tcp_connect_error_fault)
  63. TEST_DECLARE (tcp_connect_timeout)
  64. TEST_DECLARE (tcp_close_while_connecting)
  65. TEST_DECLARE (tcp_close)
  66. TEST_DECLARE (tcp_flags)
  67. TEST_DECLARE (tcp_write_to_half_open_connection)
  68. TEST_DECLARE (tcp_unexpected_read)
  69. TEST_DECLARE (tcp_read_stop)
  70. TEST_DECLARE (tcp_bind6_error_addrinuse)
  71. TEST_DECLARE (tcp_bind6_error_addrnotavail)
  72. TEST_DECLARE (tcp_bind6_error_fault)
  73. TEST_DECLARE (tcp_bind6_error_inval)
  74. TEST_DECLARE (tcp_bind6_localhost_ok)
  75. TEST_DECLARE (udp_send_and_recv)
  76. TEST_DECLARE (udp_multicast_join)
  77. TEST_DECLARE (udp_multicast_ttl)
  78. TEST_DECLARE (udp_dgram_too_big)
  79. TEST_DECLARE (udp_dual_stack)
  80. TEST_DECLARE (udp_ipv6_only)
  81. TEST_DECLARE (udp_options)
  82. TEST_DECLARE (udp_open)
  83. TEST_DECLARE (pipe_bind_error_addrinuse)
  84. TEST_DECLARE (pipe_bind_error_addrnotavail)
  85. TEST_DECLARE (pipe_bind_error_inval)
  86. TEST_DECLARE (pipe_listen_without_bind)
  87. TEST_DECLARE (pipe_connect_bad_name)
  88. TEST_DECLARE (pipe_connect_to_file)
  89. TEST_DECLARE (connection_fail)
  90. TEST_DECLARE (connection_fail_doesnt_auto_close)
  91. TEST_DECLARE (shutdown_close_tcp)
  92. TEST_DECLARE (shutdown_close_pipe)
  93. TEST_DECLARE (shutdown_eof)
  94. TEST_DECLARE (callback_stack)
  95. TEST_DECLARE (error_message)
  96. TEST_DECLARE (timer)
  97. TEST_DECLARE (timer_init)
  98. TEST_DECLARE (timer_again)
  99. TEST_DECLARE (timer_start_twice)
  100. TEST_DECLARE (timer_order)
  101. TEST_DECLARE (timer_huge_timeout)
  102. TEST_DECLARE (timer_huge_repeat)
  103. TEST_DECLARE (idle_starvation)
  104. TEST_DECLARE (loop_handles)
  105. TEST_DECLARE (get_loadavg)
  106. TEST_DECLARE (walk_handles)
  107. TEST_DECLARE (ref)
  108. TEST_DECLARE (idle_ref)
  109. TEST_DECLARE (async_ref)
  110. TEST_DECLARE (prepare_ref)
  111. TEST_DECLARE (check_ref)
  112. TEST_DECLARE (unref_in_prepare_cb)
  113. TEST_DECLARE (timer_ref)
  114. TEST_DECLARE (timer_ref2)
  115. TEST_DECLARE (fs_event_ref)
  116. TEST_DECLARE (fs_poll_ref)
  117. TEST_DECLARE (tcp_ref)
  118. TEST_DECLARE (tcp_ref2)
  119. TEST_DECLARE (tcp_ref2b)
  120. TEST_DECLARE (tcp_ref3)
  121. TEST_DECLARE (tcp_ref4)
  122. TEST_DECLARE (udp_ref)
  123. TEST_DECLARE (udp_ref2)
  124. TEST_DECLARE (udp_ref3)
  125. TEST_DECLARE (pipe_ref)
  126. TEST_DECLARE (pipe_ref2)
  127. TEST_DECLARE (pipe_ref3)
  128. TEST_DECLARE (pipe_ref4)
  129. TEST_DECLARE (process_ref)
  130. TEST_DECLARE (active)
  131. TEST_DECLARE (embed)
  132. TEST_DECLARE (async)
  133. TEST_DECLARE (get_currentexe)
  134. TEST_DECLARE (process_title)
  135. TEST_DECLARE (cwd_and_chdir)
  136. TEST_DECLARE (get_memory)
  137. TEST_DECLARE (hrtime)
  138. TEST_DECLARE (getaddrinfo_basic)
  139. TEST_DECLARE (getaddrinfo_concurrent)
  140. TEST_DECLARE (getsockname_tcp)
  141. TEST_DECLARE (getsockname_udp)
  142. TEST_DECLARE (fail_always)
  143. TEST_DECLARE (pass_always)
  144. TEST_DECLARE (spawn_fails)
  145. TEST_DECLARE (spawn_exit_code)
  146. TEST_DECLARE (spawn_stdout)
  147. TEST_DECLARE (spawn_stdin)
  148. TEST_DECLARE (spawn_stdio_greater_than_3)
  149. TEST_DECLARE (spawn_ignored_stdio)
  150. TEST_DECLARE (spawn_and_kill)
  151. TEST_DECLARE (spawn_detached)
  152. TEST_DECLARE (spawn_and_kill_with_std)
  153. TEST_DECLARE (spawn_and_ping)
  154. TEST_DECLARE (spawn_preserve_env)
  155. TEST_DECLARE (spawn_setuid_fails)
  156. TEST_DECLARE (spawn_setgid_fails)
  157. TEST_DECLARE (spawn_stdout_to_file)
  158. TEST_DECLARE (spawn_auto_unref)
  159. TEST_DECLARE (fs_poll)
  160. TEST_DECLARE (kill)
  161. TEST_DECLARE (fs_file_noent)
  162. TEST_DECLARE (fs_file_nametoolong)
  163. TEST_DECLARE (fs_file_loop)
  164. TEST_DECLARE (fs_file_async)
  165. TEST_DECLARE (fs_file_sync)
  166. TEST_DECLARE (fs_async_dir)
  167. TEST_DECLARE (fs_async_sendfile)
  168. TEST_DECLARE (fs_fstat)
  169. TEST_DECLARE (fs_chmod)
  170. TEST_DECLARE (fs_chown)
  171. TEST_DECLARE (fs_link)
  172. TEST_DECLARE (fs_readlink)
  173. TEST_DECLARE (fs_symlink)
  174. TEST_DECLARE (fs_symlink_dir)
  175. TEST_DECLARE (fs_utime)
  176. TEST_DECLARE (fs_futime)
  177. TEST_DECLARE (fs_file_open_append)
  178. TEST_DECLARE (fs_stat_missing_path)
  179. TEST_DECLARE (fs_read_file_eof)
  180. TEST_DECLARE (fs_event_watch_dir)
  181. TEST_DECLARE (fs_event_watch_file)
  182. TEST_DECLARE (fs_event_watch_file_twice)
  183. TEST_DECLARE (fs_event_watch_file_current_dir)
  184. TEST_DECLARE (fs_event_no_callback_after_close)
  185. TEST_DECLARE (fs_event_no_callback_on_close)
  186. TEST_DECLARE (fs_event_immediate_close)
  187. TEST_DECLARE (fs_event_close_with_pending_event)
  188. TEST_DECLARE (fs_event_close_in_callback)
  189. TEST_DECLARE (fs_readdir_empty_dir)
  190. TEST_DECLARE (fs_readdir_file)
  191. TEST_DECLARE (fs_open_dir)
  192. TEST_DECLARE (fs_rename_to_existing_file)
  193. TEST_DECLARE (threadpool_queue_work_simple)
  194. TEST_DECLARE (threadpool_queue_work_einval)
  195. TEST_DECLARE (threadpool_multiple_event_loops)
  196. TEST_DECLARE (threadpool_cancel_getaddrinfo)
  197. TEST_DECLARE (threadpool_cancel_work)
  198. TEST_DECLARE (threadpool_cancel_fs)
  199. TEST_DECLARE (threadpool_cancel_single)
  200. TEST_DECLARE (thread_mutex)
  201. TEST_DECLARE (thread_rwlock)
  202. TEST_DECLARE (thread_create)
  203. TEST_DECLARE (strlcpy)
  204. TEST_DECLARE (strlcat)
  205. TEST_DECLARE (dlerror)
  206. TEST_DECLARE (poll_duplex)
  207. TEST_DECLARE (poll_unidirectional)
  208. TEST_DECLARE (poll_close)
  209. #ifdef _WIN32
  210. TEST_DECLARE (spawn_detect_pipe_name_collisions_on_windows)
  211. TEST_DECLARE (argument_escaping)
  212. TEST_DECLARE (environment_creation)
  213. TEST_DECLARE (listen_with_simultaneous_accepts)
  214. TEST_DECLARE (listen_no_simultaneous_accepts)
  215. TEST_DECLARE (fs_stat_root)
  216. #else
  217. TEST_DECLARE (spawn_setuid_setgid)
  218. TEST_DECLARE (we_get_signal)
  219. TEST_DECLARE (we_get_signals)
  220. TEST_DECLARE (signal_multiple_loops)
  221. #endif
  222. #ifdef __APPLE__
  223. TEST_DECLARE (osx_select)
  224. #endif
  225. HELPER_DECLARE (tcp4_echo_server)
  226. HELPER_DECLARE (tcp6_echo_server)
  227. HELPER_DECLARE (udp4_echo_server)
  228. HELPER_DECLARE (pipe_echo_server)
  229. TASK_LIST_START
  230. TEST_OUTPUT_ENTRY (platform_output)
  231. #if 0
  232. TEST_ENTRY (callback_order)
  233. #endif
  234. TEST_ENTRY (run_once)
  235. TEST_ENTRY (run_nowait)
  236. TEST_ENTRY (loop_stop)
  237. TEST_ENTRY (barrier_1)
  238. TEST_ENTRY (barrier_2)
  239. TEST_ENTRY (barrier_3)
  240. TEST_ENTRY (condvar_1)
  241. TEST_ENTRY (condvar_2)
  242. TEST_ENTRY (condvar_3)
  243. TEST_ENTRY (condvar_4)
  244. TEST_ENTRY (condvar_5)
  245. TEST_ENTRY (semaphore_1)
  246. TEST_ENTRY (semaphore_2)
  247. TEST_ENTRY (semaphore_3)
  248. TEST_ENTRY (pipe_connect_bad_name)
  249. TEST_ENTRY (pipe_connect_to_file)
  250. TEST_ENTRY (tty)
  251. TEST_ENTRY (stdio_over_pipes)
  252. TEST_ENTRY (ipc_listen_before_write)
  253. TEST_ENTRY (ipc_listen_after_write)
  254. #ifndef _WIN32
  255. TEST_ENTRY (ipc_send_recv_pipe)
  256. #endif
  257. TEST_ENTRY (ipc_send_recv_tcp)
  258. TEST_ENTRY (ipc_tcp_connection)
  259. TEST_ENTRY (tcp_ping_pong)
  260. TEST_HELPER (tcp_ping_pong, tcp4_echo_server)
  261. TEST_ENTRY (tcp_ping_pong_v6)
  262. TEST_HELPER (tcp_ping_pong_v6, tcp6_echo_server)
  263. TEST_ENTRY (pipe_ping_pong)
  264. TEST_HELPER (pipe_ping_pong, pipe_echo_server)
  265. TEST_ENTRY (delayed_accept)
  266. TEST_ENTRY (multiple_listen)
  267. TEST_ENTRY (tcp_writealot)
  268. TEST_HELPER (tcp_writealot, tcp4_echo_server)
  269. TEST_ENTRY (tcp_open)
  270. TEST_HELPER (tcp_open, tcp4_echo_server)
  271. TEST_ENTRY (tcp_shutdown_after_write)
  272. TEST_HELPER (tcp_shutdown_after_write, tcp4_echo_server)
  273. TEST_ENTRY (tcp_connect_error_after_write)
  274. TEST_ENTRY (tcp_bind_error_addrinuse)
  275. TEST_ENTRY (tcp_bind_error_addrnotavail_1)
  276. TEST_ENTRY (tcp_bind_error_addrnotavail_2)
  277. TEST_ENTRY (tcp_bind_error_fault)
  278. TEST_ENTRY (tcp_bind_error_inval)
  279. TEST_ENTRY (tcp_bind_localhost_ok)
  280. TEST_ENTRY (tcp_listen_without_bind)
  281. TEST_ENTRY (tcp_connect_error_fault)
  282. TEST_ENTRY (tcp_connect_timeout)
  283. TEST_ENTRY (tcp_close_while_connecting)
  284. TEST_ENTRY (tcp_close)
  285. TEST_ENTRY (tcp_flags)
  286. TEST_ENTRY (tcp_write_to_half_open_connection)
  287. TEST_ENTRY (tcp_unexpected_read)
  288. TEST_ENTRY (tcp_read_stop)
  289. TEST_HELPER (tcp_read_stop, tcp4_echo_server)
  290. TEST_ENTRY (tcp_bind6_error_addrinuse)
  291. TEST_ENTRY (tcp_bind6_error_addrnotavail)
  292. TEST_ENTRY (tcp_bind6_error_fault)
  293. TEST_ENTRY (tcp_bind6_error_inval)
  294. TEST_ENTRY (tcp_bind6_localhost_ok)
  295. TEST_ENTRY (udp_send_and_recv)
  296. TEST_ENTRY (udp_dgram_too_big)
  297. TEST_ENTRY (udp_dual_stack)
  298. TEST_ENTRY (udp_ipv6_only)
  299. TEST_ENTRY (udp_options)
  300. TEST_ENTRY (udp_multicast_join)
  301. TEST_ENTRY (udp_multicast_ttl)
  302. TEST_ENTRY (udp_open)
  303. TEST_HELPER (udp_open, udp4_echo_server)
  304. TEST_ENTRY (pipe_bind_error_addrinuse)
  305. TEST_ENTRY (pipe_bind_error_addrnotavail)
  306. TEST_ENTRY (pipe_bind_error_inval)
  307. TEST_ENTRY (pipe_listen_without_bind)
  308. TEST_ENTRY (connection_fail)
  309. TEST_ENTRY (connection_fail_doesnt_auto_close)
  310. TEST_ENTRY (shutdown_close_tcp)
  311. TEST_HELPER (shutdown_close_tcp, tcp4_echo_server)
  312. TEST_ENTRY (shutdown_close_pipe)
  313. TEST_HELPER (shutdown_close_pipe, pipe_echo_server)
  314. TEST_ENTRY (shutdown_eof)
  315. TEST_HELPER (shutdown_eof, tcp4_echo_server)
  316. TEST_ENTRY (callback_stack)
  317. TEST_HELPER (callback_stack, tcp4_echo_server)
  318. TEST_ENTRY (error_message)
  319. TEST_ENTRY (timer)
  320. TEST_ENTRY (timer_init)
  321. TEST_ENTRY (timer_again)
  322. TEST_ENTRY (timer_start_twice)
  323. TEST_ENTRY (timer_order)
  324. TEST_ENTRY (timer_huge_timeout)
  325. TEST_ENTRY (timer_huge_repeat)
  326. TEST_ENTRY (idle_starvation)
  327. TEST_ENTRY (ref)
  328. TEST_ENTRY (idle_ref)
  329. TEST_ENTRY (fs_poll_ref)
  330. TEST_ENTRY (async_ref)
  331. TEST_ENTRY (prepare_ref)
  332. TEST_ENTRY (check_ref)
  333. TEST_ENTRY (unref_in_prepare_cb)
  334. TEST_ENTRY (timer_ref)
  335. TEST_ENTRY (timer_ref2)
  336. TEST_ENTRY (fs_event_ref)
  337. TEST_ENTRY (tcp_ref)
  338. TEST_ENTRY (tcp_ref2)
  339. TEST_ENTRY (tcp_ref2b)
  340. TEST_ENTRY (tcp_ref3)
  341. TEST_HELPER (tcp_ref3, tcp4_echo_server)
  342. TEST_ENTRY (tcp_ref4)
  343. TEST_HELPER (tcp_ref4, tcp4_echo_server)
  344. TEST_ENTRY (udp_ref)
  345. TEST_ENTRY (udp_ref2)
  346. TEST_ENTRY (udp_ref3)
  347. TEST_HELPER (udp_ref3, udp4_echo_server)
  348. TEST_ENTRY (pipe_ref)
  349. TEST_ENTRY (pipe_ref2)
  350. TEST_ENTRY (pipe_ref3)
  351. TEST_HELPER (pipe_ref3, pipe_echo_server)
  352. TEST_ENTRY (pipe_ref4)
  353. TEST_HELPER (pipe_ref4, pipe_echo_server)
  354. TEST_ENTRY (process_ref)
  355. TEST_ENTRY (loop_handles)
  356. TEST_ENTRY (walk_handles)
  357. TEST_ENTRY (active)
  358. TEST_ENTRY (embed)
  359. TEST_ENTRY (async)
  360. TEST_ENTRY (get_currentexe)
  361. TEST_ENTRY (process_title)
  362. TEST_ENTRY (cwd_and_chdir)
  363. TEST_ENTRY (get_memory)
  364. TEST_ENTRY (get_loadavg)
  365. TEST_ENTRY (hrtime)
  366. TEST_ENTRY (getaddrinfo_basic)
  367. TEST_ENTRY (getaddrinfo_concurrent)
  368. TEST_ENTRY (getsockname_tcp)
  369. TEST_ENTRY (getsockname_udp)
  370. TEST_ENTRY (poll_duplex)
  371. TEST_ENTRY (poll_unidirectional)
  372. TEST_ENTRY (poll_close)
  373. TEST_ENTRY (spawn_fails)
  374. TEST_ENTRY (spawn_exit_code)
  375. TEST_ENTRY (spawn_stdout)
  376. TEST_ENTRY (spawn_stdin)
  377. TEST_ENTRY (spawn_stdio_greater_than_3)
  378. TEST_ENTRY (spawn_ignored_stdio)
  379. TEST_ENTRY (spawn_and_kill)
  380. TEST_ENTRY (spawn_detached)
  381. TEST_ENTRY (spawn_and_kill_with_std)
  382. TEST_ENTRY (spawn_and_ping)
  383. TEST_ENTRY (spawn_preserve_env)
  384. TEST_ENTRY (spawn_setuid_fails)
  385. TEST_ENTRY (spawn_setgid_fails)
  386. TEST_ENTRY (spawn_stdout_to_file)
  387. TEST_ENTRY (spawn_auto_unref)
  388. TEST_ENTRY (fs_poll)
  389. TEST_ENTRY (kill)
  390. #ifdef _WIN32
  391. TEST_ENTRY (spawn_detect_pipe_name_collisions_on_windows)
  392. TEST_ENTRY (argument_escaping)
  393. TEST_ENTRY (environment_creation)
  394. TEST_ENTRY (listen_with_simultaneous_accepts)
  395. TEST_ENTRY (listen_no_simultaneous_accepts)
  396. TEST_ENTRY (fs_stat_root)
  397. #else
  398. TEST_ENTRY (spawn_setuid_setgid)
  399. TEST_ENTRY (we_get_signal)
  400. TEST_ENTRY (we_get_signals)
  401. TEST_ENTRY (signal_multiple_loops)
  402. #endif
  403. #ifdef __APPLE__
  404. TEST_ENTRY (osx_select)
  405. #endif
  406. TEST_ENTRY (fs_file_noent)
  407. TEST_ENTRY (fs_file_nametoolong)
  408. TEST_ENTRY (fs_file_loop)
  409. TEST_ENTRY (fs_file_async)
  410. TEST_ENTRY (fs_file_sync)
  411. TEST_ENTRY (fs_async_dir)
  412. TEST_ENTRY (fs_async_sendfile)
  413. TEST_ENTRY (fs_fstat)
  414. TEST_ENTRY (fs_chmod)
  415. TEST_ENTRY (fs_chown)
  416. TEST_ENTRY (fs_utime)
  417. TEST_ENTRY (fs_futime)
  418. TEST_ENTRY (fs_readlink)
  419. TEST_ENTRY (fs_symlink)
  420. TEST_ENTRY (fs_symlink_dir)
  421. TEST_ENTRY (fs_stat_missing_path)
  422. TEST_ENTRY (fs_read_file_eof)
  423. TEST_ENTRY (fs_file_open_append)
  424. TEST_ENTRY (fs_event_watch_dir)
  425. TEST_ENTRY (fs_event_watch_file)
  426. TEST_ENTRY (fs_event_watch_file_twice)
  427. TEST_ENTRY (fs_event_watch_file_current_dir)
  428. TEST_ENTRY (fs_event_no_callback_after_close)
  429. TEST_ENTRY (fs_event_no_callback_on_close)
  430. TEST_ENTRY (fs_event_immediate_close)
  431. TEST_ENTRY (fs_event_close_with_pending_event)
  432. TEST_ENTRY (fs_event_close_in_callback)
  433. TEST_ENTRY (fs_readdir_empty_dir)
  434. TEST_ENTRY (fs_readdir_file)
  435. TEST_ENTRY (fs_open_dir)
  436. TEST_ENTRY (fs_rename_to_existing_file)
  437. TEST_ENTRY (threadpool_queue_work_simple)
  438. TEST_ENTRY (threadpool_queue_work_einval)
  439. TEST_ENTRY (threadpool_multiple_event_loops)
  440. TEST_ENTRY (threadpool_cancel_getaddrinfo)
  441. TEST_ENTRY (threadpool_cancel_work)
  442. TEST_ENTRY (threadpool_cancel_fs)
  443. TEST_ENTRY (threadpool_cancel_single)
  444. TEST_ENTRY (thread_mutex)
  445. TEST_ENTRY (thread_rwlock)
  446. TEST_ENTRY (thread_create)
  447. TEST_ENTRY (strlcpy)
  448. TEST_ENTRY (strlcat)
  449. TEST_ENTRY (dlerror)
  450. #if 0
  451. /* These are for testing the test runner. */
  452. TEST_ENTRY (fail_always)
  453. TEST_ENTRY (pass_always)
  454. #endif
  455. TASK_LIST_END