nixpkgs/pkgs/development/libraries/libopus/test-timeout.patch
Francesco Gazzetta 7ba01765ac libopus: increase test timeouts
Some tests time out easily on slower machines.
Tested on a pine64 star64.
2023-07-09 12:36:32 +02:00

17 lines
486 B
Diff

diff --git a/tests/meson.build b/tests/meson.build
index 5f3ac9d..74b2de7 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,8 +1,8 @@
# Tests that link to libopus
opus_tests = [
- ['test_opus_api'],
- ['test_opus_decode', [], 60],
- ['test_opus_encode', 'opus_encode_regressions.c', 120],
+ ['test_opus_api', [], 60],
+ ['test_opus_decode', [], 120],
+ ['test_opus_encode', 'opus_encode_regressions.c', 240],
['test_opus_padding'],
['test_opus_projection'],
]