提交 43c898b7 编写于 作者: A Alex Bennée

tests: make docker.py check for persistent configs

binfmt_misc configured with the "F" flag opens the interpreter at
config time. This means it can use an already open file-descriptor to
run QEMU so there is no point trying to copy the binary into a
container.
Signed-off-by: NAlex Bennée <alex.bennee@linaro.org>
上级 7e81d198
......@@ -127,6 +127,11 @@ def _check_binfmt_misc(executable):
with open(binfmt_entry) as x: entry = x.read()
if re.search("flags:.*F.*\n", entry):
print("binfmt_misc for %s uses persistent(F) mapping to host binary\n" %
(binary))
return None
m = re.search("interpreter (\S+)\n", entry)
interp = m.group(1)
if interp and interp != executable:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册