diff --git a/run.sh b/run.sh index 990a170..d57c3f9 100755 --- a/run.sh +++ b/run.sh @@ -22,6 +22,7 @@ usage() { echo "Commands:" echo " build Build Docker image" echo " test Run all tests" + echo " test:iso Test ISO with libvirt VM (runs on host)" echo " lint Run linting checks" echo " clean Clean build artifacts" echo " shell Interactive shell in build container" @@ -136,6 +137,10 @@ else fi ' 2>&1 | tee /tmp/knel-iso-build.log ;; + test:iso) + shift # Remove 'test:iso' from args + bash "${SCRIPT_DIR}/test-iso.sh" "$@" + ;; help|*) usage ;;