From c3ed16a8ef87ea92a71516dbe1e2f589f7b92939 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 13 Jan 2019 21:09:32 +0000 Subject: [PATCH] scripts/run-regression-tests: Print an error message if downloading a kernel tar ball failed git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7876 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index fa37fdc0a..1105bd01d 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -647,7 +647,10 @@ do patchdir="patchdir-${kv}" k="${kv}" - download_kernel "$k" || continue + if ! download_kernel "$k"; then + echo "Downloading kernel version $k failed" + continue + fi generate_kernel_patch "$k" "${generate_kernel_patch_options}" || continue ( cd "${outputdir}" &&