Disable HTML DOM checks in parser's performance test

The baseline was set before the DOM validations were implemented.
This commit is contained in:
iska
2015-06-06 20:10:28 +02:00
parent df53870880
commit a7caa34762
+4
View File
@@ -15,6 +15,8 @@
@implementation HTMLKitParserPerformance
#define HTMLKIT_NO_DOM_CHECKS
- (void)testParserPerformance
{
NSString *path = [[NSBundle bundleForClass:self.class] resourcePath];
@@ -28,4 +30,6 @@
}];
}
#undef HTMLKIT_NO_DOM_CHECKS
@end