Commit d0a1b1a0 authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

linux: Lower static initializer expectations by 1, to 7.

Looks like something removed an initializer.

TBR=dpranke

Bug: 94925
Change-Id: I6c8d941374b9d4993f6d2eecd4ecc0dcf5105d61
Reviewed-on: https://chromium-review.googlesource.com/c/1293549
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarHans Wennborg <hans@chromium.org>
Cr-Commit-Position: refs/heads/master@{#601553}
parent 500be9f9
......@@ -29,13 +29,17 @@ from slave import build_directory
SRC_DIR = os.path.abspath(
os.path.join(os.path.dirname(__file__), '..', '..', '..', '..', '..', '..'))
# If something adds a static initializer, revert it, don't increase these
# numbers. We don't accept regressions in static initializers.
EXPECTED_LINUX_SI_COUNTS = {
'chrome': 8,
'nacl_helper': 6,
'chrome': 7,
'nacl_helper': 5,
'nacl_helper_bootstrap': 0,
}
EXPECTED_MAC_SI_COUNT = 1
# If something adds a static initializer, revert it, don't increase these
# numbers. We don't accept regressions in static initializers.
EXPECTED_MAC_SI_COUNT = 1 # https://crbug.com/893594
class ResultsCollector(object):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment