Allow uninstantiated parametrized tests in data_channel_integration_tests.cc

Bug: webrtc:12525
Change-Id: I79244a3a6de29bcf77677dbc19368618116f8f9f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/209642
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33382}
This commit is contained in:
Bjorn Terelius
2021-03-04 10:53:08 +01:00
committed by Commit Bot
parent 609b524dd3
commit 3208bf102b

View File

@ -40,6 +40,8 @@ class DataChannelIntegrationTest
: PeerConnectionIntegrationBaseTest(GetParam()) {}
};
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(DataChannelIntegrationTest);
// Fake clock must be set before threads are started to prevent race on
// Set/GetClockForTesting().
// To achieve that, multiple inheritance is used as a mixin pattern
@ -71,6 +73,9 @@ class DataChannelIntegrationTestPlanB
: PeerConnectionIntegrationBaseTest(SdpSemantics::kPlanB) {}
};
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(
DataChannelIntegrationTestWithFakeClock);
class DataChannelIntegrationTestUnifiedPlan
: public PeerConnectionIntegrationBaseTest {
protected: