Disable RTCStatsIntegrationTest.GetsStatsWhileDestroyingPeerConnection

The current implementation triggers vptr race condition due to the
test setup itself (see bug for the glorious details).
Disabling the test reduces TSAN noise and will help to detect more
critical defects.

Bug: webrtc:9847
Change-Id: I4912b00f1faad5f41ccaa4b55bc21b5215b816c9
Reviewed-on: https://webrtc-review.googlesource.com/c/110907
Reviewed-by: Henrik Boström <hbos@webrtc.org>
Commit-Queue: Yves Gerey <yvesg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25674}
diff --git a/pc/rtcstats_integrationtest.cc b/pc/rtcstats_integrationtest.cc
index 3c07e38..f9375f7 100644
--- a/pc/rtcstats_integrationtest.cc
+++ b/pc/rtcstats_integrationtest.cc
@@ -806,7 +806,11 @@
   EXPECT_FALSE(report->size());
 }
 
-TEST_F(RTCStatsIntegrationTest, GetsStatsWhileDestroyingPeerConnections) {
+// TODO(bugs.webrtc.org/9847) Remove this test altogether if a proper fix cannot
+// be found. For now it is lying, as we cannot safely gets stats while
+// destroying PeerConnection.
+TEST_F(RTCStatsIntegrationTest,
+       DISABLED_GetsStatsWhileDestroyingPeerConnection) {
   StartCall();
 
   rtc::scoped_refptr<RTCStatsObtainer> stats_obtainer =