-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path_xtest_impl.py
More file actions
executable file
·151 lines (127 loc) · 4.18 KB
/
Copy path_xtest_impl.py
File metadata and controls
executable file
·151 lines (127 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#!/usr/bin/python3
import argparse
import logging
import os
import shutil
from pathlib import Path
import subprocess
from pprint import pprint
import sys
from typing import Dict, List, Union
from _python_path import add_extra_path
add_extra_path()
from mingw_lite.args import parse_args
from mingw_lite.path import ProjectPaths
from mingw_lite.profile import BranchProfile, resolve_profile
from mingw_lite.util import XMAKE_ARCH_MAP, ensure, overlayfs_ro, common_cross_layers
def clean(config: argparse.Namespace, paths: ProjectPaths):
if paths.test_dir.exists():
shutil.rmtree(paths.test_dir)
if paths.layer_dir.exists():
shutil.rmtree(paths.layer_dir)
def prepare_dirs(paths: ProjectPaths):
shutil.copytree(
paths.test_src_dir,
paths.test_dir,
ignore = shutil.ignore_patterns(
'.cache',
'.vscode',
'.xmake',
'build',
),
)
ensure(paths.layer_dir)
def extract(path: Path, arx: Path):
subprocess.run([
'bsdtar',
'-C', path,
'-xf', arx,
'--no-same-owner',
], check = True)
def prepare_test_binary(ver: BranchProfile, paths: ProjectPaths):
extract(paths.layer_dir.parent, paths.cross_pkg)
def test_corss_compiler(ver: BranchProfile, paths: ProjectPaths, verbose: List[str]):
with overlayfs_ro('/usr/local', [
paths.layer_AAA.xmake / 'usr/local',
paths.layer_AAB.crt_target / 'usr/local',
*common_cross_layers(paths),
]):
lto_bigobj = 'y' if ver.lto_bigobj else 'n'
subprocess.check_call([
'xmake', 'f', *verbose,
'-p', 'mingw', '-a', XMAKE_ARCH_MAP[ver.arch],
'--mingw=/usr/local',
'--dlopen=n', '--iconv-error=n', f'--lto-bigobj={lto_bigobj}', '--utf8=y',
], cwd = paths.test_dir)
subprocess.check_call(['xmake', 'b', *verbose], cwd = paths.test_dir)
subprocess.check_call(['xmake', 'test', *verbose], cwd = paths.test_dir)
def test_cross_shared(ver: BranchProfile, paths: ProjectPaths, verbose: List[str]):
with overlayfs_ro('/usr/local', [
paths.layer_AAA.xmake / 'usr/local',
paths.layer_AAB.crt_target / 'usr/local',
paths.layer_AAB.crt_shared / 'usr/local',
paths.layer_AAB.gcc_lib_shared / 'usr/local',
paths.layer_AAB.mcfgthread_shared / 'usr/local',
paths.layer_AAB.winpthreads_shared / 'usr/local',
*common_cross_layers(paths),
]):
lto_bigobj = 'y' if ver.lto_bigobj else 'n'
subprocess.check_call([
'xmake', 'f', *verbose,
'--builddir=build-shared',
'-p', 'mingw', '-a', XMAKE_ARCH_MAP[ver.arch],
'--mingw=/usr/local',
'--dlopen=y', '--iconv-error=n', f'--lto-bigobj={lto_bigobj}', '--utf8=y',
], cwd = paths.test_dir)
subprocess.check_call(['xmake', 'b', *verbose], cwd = paths.test_dir)
subprocess.check_call(
['xmake', 'test', *verbose],
cwd = paths.test_dir,
env = {
**os.environ,
'WINEPATH': f'/usr/local/{ver.target}/bin',
},
)
def main():
config = parse_args()
if config.verbose >= 2:
logging.basicConfig(level = logging.DEBUG)
os.environ['WINEDEBUG'] = ''
xmake_verbose = ['-vD']
elif config.verbose >= 1:
logging.basicConfig(level = logging.INFO)
os.environ['WINEDEBUG'] = 'fixme-all'
xmake_verbose = ['-v']
else:
logging.basicConfig(level = logging.ERROR)
os.environ['WINEDEBUG'] = '-all'
xmake_verbose = []
ver = resolve_profile(config)
paths = ProjectPaths(config, ver)
clean(config, paths)
prepare_dirs(paths)
prepare_test_binary(ver, paths)
test_report: Dict[str, Union[bool, str]] = {
'fail': False,
}
# https://bugs.archlinux.org/task/78702
os.environ['LIBMOUNT_FORCE_MOUNT2'] = 'always'
os.environ['XMAKE_ROOT'] = 'y'
try:
test_corss_compiler(ver, paths, xmake_verbose)
test_report['cross-static'] = 'okay'
except Exception as e:
test_report['fail'] = 'True'
test_report['cross-static'] = repr(e)
try:
test_cross_shared(ver, paths, xmake_verbose)
test_report['cross-shared'] = 'okay'
except Exception as e:
test_report['fail'] = 'True'
test_report['cross-shared'] = repr(e)
print("============================== XTEST REPORT ==============================")
pprint(test_report)
if test_report['fail']:
sys.exit(1)
if __name__ == '__main__':
main()