diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-02 02:28:06 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-02 02:28:06 +0100 |
| commit | 2b467659d30db14df17c7b50438c46788ab0d341 (patch) | |
| tree | 92eb821a6e1e0262ff21e9f06b0d27f0bd3a5460 /header.h | |
| parent | fb41e23423854a865201c0803803191d1f65c8fa (diff) | |
| download | ft_printf_test-2b467659d30db14df17c7b50438c46788ab0d341.tar.gz ft_printf_test-2b467659d30db14df17c7b50438c46788ab0d341.tar.bz2 ft_printf_test-2b467659d30db14df17c7b50438c46788ab0d341.zip | |
Added no crash, uint, hex low and hex up pft tests
Diffstat (limited to 'header.h')
| -rw-r--r-- | header.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -31,6 +31,17 @@ void test_setup(void); void test_tear_down(void); char *read_stdout_buf(void); +void test_pft_nacked(void); +void test_pft_percent(void); +void test_pft_string(void); +void test_pft_int_i(void); +void test_pft_int_d(void); +void test_ptf_uint(void); +void test_ptf_hex_low(void); +void test_ptf_hex_up(void); +void test_pft_ptr(void); +void test_pft_char(void); + # define TEST_SEGFAULT(x) do { \ if ((pid = fork()) < 0) \ exit(EXIT_FAILURE); \ |
