Files
mo7sen 2c74b727ef
Run tests / Run tests (push) Successful in 11s
Added more tests + fixed evstr issues
2026-05-04 21:44:32 +03:00

28 lines
622 B
Meson

tests = [
'stack_global_heap',
'slice',
'push_variants',
'new_format',
'replace_first',
'find_all',
'find_all_exact_match',
'find_all_short_suffix',
'find_all_count_only',
'find_all_no_matches',
'find_all_overlapping',
'push_fmt_float',
'find_first_mismatch',
'find_first_overlapping_prefix',
'stack_get_space',
'overlapping_push',
'find_first_empty_query',
'find_first_query_too_long',
'find_first_empty_text',
'replace_first_query_too_long',
]
foreach t : tests
exec = executable(t, t+'.c', dependencies: [str_dep], c_args: evh_c_args)
test(t, exec, suite: 'str')
endforeach