()
| 1344 | |
| 1345 | |
| 1346 | def subprocess_env(): |
| 1347 | e = os.environ.copy() |
| 1348 | # https://bugzil.la/745154 |
| 1349 | e['MOZ_DISABLE_AUTO_SAFE_MODE'] = '1' |
| 1350 | e['MOZ_DISABLE_SAFE_MODE_KEY'] = '1' # https://bugzil.la/653410#c9 |
| 1351 | e['JIT_OPTION_asmJSAtomicsEnable'] = 'true' # https://bugzil.la/1299359#c0 |
| 1352 | return e |
| 1353 | |
| 1354 | |
| 1355 | # Removes a directory tree even if it was readonly, and doesn't throw exception on failure. |