diff options
| author | jvoisin | 2023-07-11 00:00:16 +0200 |
|---|---|---|
| committer | jvoisin | 2023-07-11 00:00:16 +0200 |
| commit | 552cf2fc3165407cda3aa3146bd2b57c9beccb36 (patch) | |
| tree | 9113970a6e78678007a479ddf047bf644f878b36 /tests/test_ttyname_r_static.c | |
| parent | 906b7f6d576b10a8f20d858e379595c9a94cabfc (diff) | |
Add some dynamic tests for unistd.h
Diffstat (limited to 'tests/test_ttyname_r_static.c')
| -rw-r--r-- | tests/test_ttyname_r_static.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test_ttyname_r_static.c b/tests/test_ttyname_r_static.c new file mode 100644 index 0000000..89afc2b --- /dev/null +++ b/tests/test_ttyname_r_static.c | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | #include "common.h" | ||
| 2 | |||
| 3 | #include <unistd.h> | ||
| 4 | |||
| 5 | int main(int argc, char** argv) { | ||
| 6 | char buffer[12] = {0}; | ||
| 7 | |||
| 8 | CHK_FAIL_START | ||
| 9 | ttyname_r(0, buffer, 14); | ||
| 10 | CHK_FAIL_END | ||
| 11 | |||
| 12 | puts(buffer); | ||
| 13 | return ret; | ||
| 14 | } | ||
