diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-07-17 16:33:45 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-07-17 16:33:45 +0200 |
| commit | 450e36f8ddf974e503731288c8d8bb8c62e67e47 (patch) | |
| tree | 428eacfe26c4b7237ff98d339b5ed41b971cfd34 /test/src/main.c | |
| parent | 0fc1e473e3bae0e1df32228ff72b9ab654fd2ac3 (diff) | |
| download | libft-450e36f8ddf974e503731288c8d8bb8c62e67e47.tar.gz libft-450e36f8ddf974e503731288c8d8bb8c62e67e47.tar.bz2 libft-450e36f8ddf974e503731288c8d8bb8c62e67e47.zip | |
Fixing ft_strtol overflow
Diffstat (limited to 'test/src/main.c')
| -rw-r--r-- | test/src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/src/main.c b/test/src/main.c index e962577..9636cf7 100644 --- a/test/src/main.c +++ b/test/src/main.c @@ -1,5 +1,7 @@ #include "libft_test.h" +int helper_segfault_pid = -1; + static void run_all_test(void) { // ctype @@ -34,6 +36,7 @@ static void run_all_test(void) RUN_TEST_GROUP(ft_strsjoinf); RUN_TEST_GROUP(ft_strsub); RUN_TEST_GROUP(ft_strsubf); + RUN_TEST_GROUP(ft_strtol); // ht RUN_TEST_GROUP(ft_htentry_new); |
