4f3ef3505a
- Don't have tests repeat themselves, meson has a `--repeat` flag - Fix a minor leak of a GRand - Speed up a test - Increase timeout This still needs a lot of improvements, it runs at lot of loops within loops generating random strings that could be optimized. This means it can take a very long time on some computers. Closes #2629
17 lines
348 B
Meson
17 lines
348 B
Meson
fishlim_test_sources = [
|
|
'tests.c',
|
|
'mock-keystore.c',
|
|
'../fish.c',
|
|
'../utils.c',
|
|
]
|
|
|
|
fishlim_tests = executable('fishlim_tests', fishlim_test_sources,
|
|
dependencies: [libgio_dep, libssl_dep, hexchat_plugin_dep],
|
|
include_directories: include_directories('..'),
|
|
)
|
|
|
|
test('Fishlim Tests', fishlim_tests,
|
|
protocol: 'tap',
|
|
timeout: 600,
|
|
)
|