19 lines
373 B
Meson
19 lines
373 B
Meson
tests = [
|
|
'stack_global_heap',
|
|
'slice',
|
|
'push_variants',
|
|
'new_format',
|
|
'replace_first',
|
|
'find_all',
|
|
'push_fmt_float',
|
|
'find_first_mismatch',
|
|
'find_first_overlapping_prefix',
|
|
'stack_get_space',
|
|
'overlapping_push',
|
|
]
|
|
|
|
foreach t : tests
|
|
exec = executable(t, t+'.c', dependencies: [str_dep], c_args: evh_c_args)
|
|
test(t, exec, suite: 'str')
|
|
endforeach
|