Skip to content

Commit 987e7c5

Browse files
Disable the leak checks for now, because we are getting unrelated positives.
1 parent 6cb50ad commit 987e7c5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/darwin/Framework/CHIPTests/TestHelpers/MTRTestCase.mm

+2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ @implementation MTRTestCase
2727
*/
2828
- (void)tearDown
2929
{
30+
#if 0
3031
#if defined(ENABLE_LEAK_DETECTION) && ENABLE_LEAK_DETECTION
3132
if (_detectLeaks) {
3233
int pid = getpid();
3334
__auto_type * cmd = [NSString stringWithFormat:@"leaks %d", pid];
3435
int ret = system(cmd.UTF8String);
3536
XCTAssertEqual(ret, 0, "LEAKS DETECTED");
3637
}
38+
#endif
3739
#endif
3840

3941
[super tearDown];

0 commit comments

Comments
 (0)