mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1227248 - Part 3: Make GeneratedTest{Certificate,Key} no-op when --disable-compile-environment. r=gps
This implements glandium's suggestion from https://bugzilla.mozilla.org/show_bug.cgi?id=1227248#c5: since it's not easy to run xpcshell tests in --disable-compile-environment builds (and, right now, in artifact builds), let's just skip this work entirely in those situations. This saves about 30s of build time on my machine.
This commit is contained in:
parent
69fd5a564e
commit
cd00fb9ff1
@ -6,6 +6,9 @@
|
||||
|
||||
@template
|
||||
def GeneratedTestCertificate(name):
|
||||
if not CONFIG['COMPILE_ENVIRONMENT']:
|
||||
return
|
||||
|
||||
GENERATED_FILES += [name]
|
||||
props = GENERATED_FILES[name]
|
||||
props.script = '/security/manager/ssl/tests/unit/pycert.py'
|
||||
@ -20,6 +23,9 @@ def GeneratedTestCertificate(name):
|
||||
|
||||
@template
|
||||
def GeneratedTestKey(name):
|
||||
if not CONFIG['COMPILE_ENVIRONMENT']:
|
||||
return
|
||||
|
||||
GENERATED_FILES += [name]
|
||||
props = GENERATED_FILES[name]
|
||||
props.script = '/security/manager/ssl/tests/unit/pykey.py'
|
||||
|
Loading…
Reference in New Issue
Block a user