tests: remove check2 timeouts in favor of meson

Meson already handles timeouts, configurable on the command line with
--timeout-multiplier.  They are set to 300s for all tests.

Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/807>
This commit is contained in:
matoro 2024-01-24 12:08:28 -05:00
parent ed3d4f0837
commit 26ccd1167a
20 changed files with 1 additions and 32 deletions

View file

@ -114,10 +114,6 @@ int main(int argc, char *argv[]) {
s = suite_create("Lock Auto Spawn");
tc = tcase_create("lockautospawn");
tcase_add_test(tc, lockautospawn_test);
/* the default timeout is too small,
* set it to a reasonable large one.
*/
tcase_set_timeout(tc, 60 * 60);
suite_add_tcase(s, tc);
sr = srunner_create(s);