Mark perftests directory as a test directory.

This makes it so classes in perfests dont have to have javadocs.

Test: None
Change-Id: I5bbae5766e6f9a26fdd820c58c790a8391214e20
diff --git a/checkstyle.py b/checkstyle.py
index e570327..420f256 100755
--- a/checkstyle.py
+++ b/checkstyle.py
@@ -62,7 +62,7 @@
                 'com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck']
 SKIPPED_RULES_FOR_TEST_FILES = ['com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheck',
                                 'com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck']
-SUBPATH_FOR_TEST_FILES = ['/tests/', '/test/', '/androidTest/']
+SUBPATH_FOR_TEST_FILES = ['/tests/', '/test/', '/androidTest/', '/perftests/']
 SUBPATH_FOR_TEST_DATA_FILES = _FindFoldersContaining(git.repository_root(),
                                                      'IGNORE_CHECKSTYLE')
 ERROR_UNCOMMITTED = 'You need to commit all modified files before running Checkstyle\n'