2019-05-03 00:18:45 +03:00
|
|
|
malloc_tests = executable(
|
|
|
|
'malloc_tests',
|
|
|
|
'malloc_tests.c',
|
|
|
|
include_directories: inc,
|
|
|
|
link_with: ft_malloc,
|
|
|
|
)
|
|
|
|
|
2019-05-07 22:50:31 +03:00
|
|
|
|
|
|
|
malloc_fuzzy_tests = executable(
|
|
|
|
'malloc_fuzzy',
|
|
|
|
'fuzzy.c',
|
|
|
|
include_directories: inc,
|
|
|
|
link_with: ft_malloc,
|
|
|
|
)
|
|
|
|
|
|
|
|
test('malloc tests', malloc_tests)
|
|
|
|
|
|
|
|
test('malloc fuzzy tests', malloc_fuzzy_tests, args: ['10', '1000', '0', '10000'])
|