Skip to content

Commit 742e28c

Browse files
Re-enable the leak detection in MTRTestCase, now that the test leaks are fixed.
1 parent 66bc46e commit 742e28c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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

-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,13 @@ @implementation MTRTestCase
2727
*/
2828
- (void)tearDown
2929
{
30-
#if 0
3130
#if defined(ENABLE_LEAK_DETECTION) && ENABLE_LEAK_DETECTION
3231
if (_detectLeaks) {
3332
int pid = getpid();
3433
__auto_type * cmd = [NSString stringWithFormat:@"leaks %d", pid];
3534
int ret = system(cmd.UTF8String);
3635
XCTAssertEqual(ret, 0, "LEAKS DETECTED");
3736
}
38-
#endif
3937
#endif
4038

4139
[super tearDown];

0 commit comments

Comments
 (0)