Remove the nsmodule check temporarily draft
authorTom Ritter <tom@mozilla.com>
Wed, 09 Jan 2019 15:29:45 -0600 (2019-01-09)
changeset 1807007 00a398b1fa4d4c79cf5651635bed03049378b0b2
parent 1806993 9857214ebf6b57fb140a6a0dd8c1a9ec6a3c141c
child 1807008 c7ca3a0df8ec659bbe75322bea4ab296a91a1c50
push id326813
push usertritter@mozilla.com
push dateThu, 10 Jan 2019 19:08:59 +0000 (2019-01-10)
treeherdertry@c7ca3a0df8ec [default view] [failures only]
milestone60.4.1
Remove the nsmodule check temporarily
python/mozbuild/mozbuild/action/check_binary.py
--- a/python/mozbuild/mozbuild/action/check_binary.py
+++ b/python/mozbuild/mozbuild/action/check_binary.py
@@ -308,18 +308,16 @@ def checks(target, binary):
         checks.append(check_glibc)
 
     # Disabled for local builds because of readelf performance: See bug 1472496
     if not buildconfig.substs.get('DEVELOPER_OPTIONS'):
         checks.append(check_textrel)
         checks.append(check_pt_load)
         checks.append(check_mozglue_order)
 
-    checks.append(check_nsmodules)
-
     retcode = 0
     basename = os.path.basename(binary)
     for c in checks:
         try:
             name = c.__name__
             c(target, binary)
             if buildconfig.substs.get('MOZ_AUTOMATION'):
                 print('TEST-PASS | {} | {}'.format(name, basename))