mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-01 07:00:10 +00:00
13 lines
251 B
Bash
Executable File
13 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "binfmt test suite FAILED\n" >&1
|
|
exit 1
|
|
}
|
|
|
|
[ -e /binfmt_misc/qemu-aarch64 ] || failed
|
|
[ -e /binfmt_misc/qemu-arm ] || failed
|
|
[ -e /binfmt_misc/qemu-ppc64le ] || failed
|
|
|
|
printf "binfmt test suite PASSED\n" >&1
|