diff --git a/docs/config.yml b/docs/config.yml index c7932bd915ed..5f66b43af89b 100644 --- a/docs/config.yml +++ b/docs/config.yml @@ -139,5 +139,6 @@ allowed_errors: # Bug 1915274 - General issues in nss docs. - "security/nss/releases/nss_3_90\\.rst.* ERROR: Content block expected for the \"container\" directive" - "security/nss/releases/nss_3_94\\.rst.* ERROR: Unknown target name:" + - "security/nss/getting_started\\.rst.* CRITICAL: Unexpected section title" max_num_warnings: 837 diff --git a/testing/talos/perfdocs/index.rst b/testing/talos/perfdocs/index.rst index 6a4b8708d856..1343857a25ea 100644 --- a/testing/talos/perfdocs/index.rst +++ b/testing/talos/perfdocs/index.rst @@ -377,13 +377,13 @@ Extra Talos Tests :local: File IO -------- +======= File IO is tested using the tp5 test set in the `xperf`_ test. Possible regression causes -~~~~~~~~~~~~~~~~~~~~~~~~~~ +-------------------------- - **nonmain_startup_fileio opt (with or without e10s) windows7-32** – `bug @@ -397,7 +397,7 @@ Possible regression causes `e10s `__ Xres (X Resource Monitoring) ----------------------------- +============================ A memory metric tracked during tp5 test runs. This metric is sampled every 20 seconds. This metric is collected on linux only. @@ -405,7 +405,7 @@ every 20 seconds. This metric is collected on linux only. `xres man page `__. % CPU ------ +===== Cpu usage tracked during tp5 test runs. This metric is sampled every 20 seconds. This metric is collected on windows only. diff --git a/tools/moztreedocs/mach_commands.py b/tools/moztreedocs/mach_commands.py index 38fc99becb88..ea93c6219204 100644 --- a/tools/moztreedocs/mach_commands.py +++ b/tools/moztreedocs/mach_commands.py @@ -357,7 +357,7 @@ def _check_sphinx_errors(warnings, docs_config): allowed_errors_regex = [re.compile(item) for item in docs_config["allowed_errors"]] errors = [] for warning in warnings: - if "ERROR" in warning: + if warning in ["ERROR", "CRITICAL"]: if not (any(item.search(warning) for item in allowed_errors_regex)): errors.append(warning) return errors