summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorjvoisin2023-07-11 00:00:16 +0200
committerjvoisin2023-07-11 00:00:16 +0200
commit552cf2fc3165407cda3aa3146bd2b57c9beccb36 (patch)
tree9113970a6e78678007a479ddf047bf644f878b36 /tests/Makefile
parent906b7f6d576b10a8f20d858e379595c9a94cabfc (diff)
Add some dynamic tests for unistd.h
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile33
1 files changed, 22 insertions, 11 deletions
diff --git a/tests/Makefile b/tests/Makefile
index da8992e..34f3e06 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -38,19 +38,30 @@ TARGETS= \
38 test_stpncpy_overwrite_over \ 38 test_stpncpy_overwrite_over \
39 test_stpncpy_overwrite_under \ 39 test_stpncpy_overwrite_under \
40 test_stpncpy_static_write \ 40 test_stpncpy_static_write \
41 test_confstr \ 41 test_confstr_dynamic \
42 test_getcwd \ 42 test_confstr_static \
43 test_getcwd_static \
44 test_getcwd_dynamic \
43 test_poll \ 45 test_poll \
44 test_ppoll \ 46 test_ppoll \
45 test_getdomainname \ 47 test_getdomainname_static \
46 test_getgroups \ 48 test_getdomainname_dynamic \
47 test_gethostname \ 49 test_getgroups_static \
48 test_getlogin_r \ 50 test_getgroups_dynamic \
49 test_pread \ 51 test_gethostname_static \
50 test_read \ 52 test_gethostname_dynamic \
51 test_readlink \ 53 test_getlogin_r_static \
52 test_ttyname_r \ 54 test_getlogin_r_dynamic \
53 test_write \ 55 test_pread_static \
56 test_pread_dynamic \
57 test_read_static \
58 test_read_dynamic \
59 test_readlink_static \
60 test_readlink_dynamic \
61 test_ttyname_r_static \
62 test_ttyname_r_dynamic \
63 test_write_static \
64 test_write_dynamic \
54 test_fread_int_overflow \ 65 test_fread_int_overflow \
55 test_fread_overwrite \ 66 test_fread_overwrite \
56 test_fwrite_int_overflow \ 67 test_fwrite_int_overflow \