mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-03 16:11:35 +00:00
Removed LTP tests and the stress test group as hey weren't run via rtf. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
29 lines
667 B
Bash
29 lines
667 B
Bash
#!/bin/sh
|
|
# SUMMARY: Test build and insertion of kernel modules
|
|
# LABELS:
|
|
# REPEAT:
|
|
# AUTHOR: Rolf Neugebauer <rolf.neugebauer@docker.com>
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
IMAGE_NAME="kmod-test"
|
|
|
|
clean_up() {
|
|
docker rmi ${IMAGE_NAME} || true
|
|
find . -iname "kmod*" -not -iname "*.yml" -exec rm -rf {} \;
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Make sure we have the latest kernel image
|
|
docker pull linuxkit/kernel:4.9.x
|
|
# Build a package
|
|
docker build -t ${IMAGE_NAME} .
|
|
# Build a LinuxKit image with kernel module (and test script)
|
|
moby build kmod
|
|
# Run it
|
|
linuxkit run qemu kmod | grep -q "Hello LinuxKit"
|