Bug 1683110 - run compiled tests as python 3 r=aki

run compiled tests w/python3

Differential Revision: https://phabricator.services.mozilla.com/D102619
This commit is contained in:
Joel Maher 2021-01-28 18:10:56 +00:00
parent 97b7bf74f3
commit c8cca1ef20
5 changed files with 17 additions and 4 deletions

View File

@ -30,6 +30,7 @@ job-defaults:
- unittests/mac_unittest.py
windows.*:
- unittests/win_unittest.py
python-3: true
cppunit:
description: "CPP Unit Tests"

View File

@ -11,11 +11,15 @@ PYTHON = sys.executable
PYTHON_DLL = "c:/mozilla-build/python27/python27.dll"
VENV_PATH = os.path.join(os.getcwd(), "build/venv")
PYWIN32 = "pypiwin32==219"
if sys.version_info > (3, 0):
PYWIN32 = "pywin32==300"
config = {
"log_name": "raptor",
"installer_path": "installer.exe",
"virtualenv_path": VENV_PATH,
"virtualenv_modules": ["pypiwin32==219", "raptor", "mozinstall"],
"virtualenv_modules": [PYWIN32, "raptor", "mozinstall"],
"exes": {
"python": PYTHON,
"easy_install": [

View File

@ -11,11 +11,15 @@ PYTHON = sys.executable
PYTHON_DLL = "c:/mozilla-build/python27/python27.dll"
VENV_PATH = os.path.join(os.getcwd(), "build/venv")
PYWIN32 = "pypiwin32==219"
if sys.version_info > (3, 0):
PYWIN32 = "pywin32==300"
config = {
"log_name": "raptor",
"installer_path": "installer.exe",
"virtualenv_path": VENV_PATH,
"virtualenv_modules": ["pypiwin32==219", "raptor", "mozinstall"],
"virtualenv_modules": [PYWIN32, "raptor", "mozinstall"],
"exes": {
"python": PYTHON,
"easy_install": [

View File

@ -15,6 +15,10 @@ NODEJS_PATH = None
if "MOZ_FETCHES_DIR" in os.environ:
NODEJS_PATH = os.path.join(os.environ["MOZ_FETCHES_DIR"], "node/node.exe")
PYWIN32 = "pypiwin32==219"
if sys.version_info > (3, 0):
PYWIN32 = "pywin32==300"
XPCSHELL_NAME = "xpcshell.exe"
EXE_SUFFIX = ".exe"
DISABLE_SCREEN_SAVER = False
@ -39,7 +43,7 @@ config = {
"installer_path": INSTALLER_PATH,
"binary_path": BINARY_PATH,
"xpcshell_name": XPCSHELL_NAME,
"virtualenv_modules": ["pypiwin32==219", "six==1.13.0", "vcversioner==2.16.0.0"],
"virtualenv_modules": [PYWIN32, "six==1.13.0", "vcversioner==2.16.0.0"],
"virtualenv_path": "venv",
"exe_suffix": EXE_SUFFIX,
"run_file_names": {

View File

@ -64,7 +64,7 @@ class RemoteCPPUnitTests(cppunittests.CPPUnitTests):
)
apk_contents.extract(info, tmpdir)
local_file = os.path.join(tmpdir, info.filename)
with open(local_file) as f:
with open(local_file, "rb") as f:
# Decompress xz-compressed file.
if f.read(5)[1:] == "7zXZ":
cmd = ["xz", "-df", "--suffix", ".so", local_file]