From 0ee64695ca7ccc947433acbc752ec597c7d54351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C5=93ur?= Date: Mon, 1 Apr 2024 03:07:12 +0800 Subject: [PATCH] test: disable restartWithDifferentInterval for all platforms (#6745) --- tests/libtransmission/timer-test.cc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/libtransmission/timer-test.cc b/tests/libtransmission/timer-test.cc index 4e80f6b3d..7a81ec93e 100644 --- a/tests/libtransmission/timer-test.cc +++ b/tests/libtransmission/timer-test.cc @@ -177,12 +177,8 @@ TEST_F(TimerTest, repeatingHonorsInterval) EXPECT_EQ(DesiredLoops, n_calls); } -#ifdef _WIN32 // TODO: flaky test should be fixed instead of disabled TEST_F(TimerTest, DISABLED_restartWithDifferentInterval) -#else -TEST_F(TimerTest, restartWithDifferentInterval) -#endif { auto timer_maker = EvTimerMaker{ evbase_.get() }; auto timer = timer_maker.create(); @@ -211,12 +207,8 @@ TEST_F(TimerTest, restartWithDifferentInterval) test(200ms); } -#ifdef _WIN32 // TODO: flaky test should be fixed instead of disabled TEST_F(TimerTest, DISABLED_restartWithSameInterval) -#else -TEST_F(TimerTest, restartWithSameInterval) -#endif { auto timer_maker = EvTimerMaker{ evbase_.get() }; auto timer = timer_maker.create();