Merge pull request #378 from kiwix/increase-test-timeout

Increase test timeout to 160s
This commit is contained in:
Kelson 2020-07-10 10:16:22 +02:00 committed by GitHub
commit 7fe07c65fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ if gtest_dep.found() and not meson.is_cross_build()
link_args: extra_link_args, link_args: extra_link_args,
dependencies : all_deps + [gtest_dep], dependencies : all_deps + [gtest_dep],
build_rpath : '$ORIGIN') build_rpath : '$ORIGIN')
test(test_name, test_exe) test(test_name, test_exe, timeout : 160)
endforeach endforeach
endif endif