]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
tests: make docker.py check for persistent configs
authorAlex Bennée <alex.bennee@linaro.org>
Tue, 15 Jan 2019 14:37:51 +0000 (14:37 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Fri, 8 Feb 2019 17:32:35 +0000 (17:32 +0000)
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: Alex Bennée <alex.bennee@linaro.org>
tests/docker/docker.py

index 30f463af9f476e75728de1acc128ac648fbe18f3..768728785f2dc1b0d8fa04e3f54206f29b49e795 100755 (executable)
@@ -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: