diff --git a/tests/image_creation.sh b/tests/image_creation.sh index 376464dac4..5c1eae421f 100755 --- a/tests/image_creation.sh +++ b/tests/image_creation.sh @@ -347,10 +347,8 @@ test_distro_alpine() run_test "${name}" "" "alpine" "no" "init" } -main() +test_all_distros() { - setup - test_distro_fedora test_distro_centos test_distro_alpine @@ -364,4 +362,11 @@ main() fi } +main() +{ + setup + + test_all_distros +} + main "$@"