From 113629cb9a9b1716ab8f5ff52a1ed89536551106 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Fri, 3 Jul 2020 12:24:04 +0200 Subject: [PATCH] run-make-check.sh: fix the log message With 5e9a1d95c9f7 ("run-make-check.sh: extract run-make.sh"), this log message is actively confusing. At this point we just have the binaries, no tests have run yet (and if -N is passed through CHECK_MAKEOPTS, none will). Signed-off-by: Ilya Dryomov --- run-make-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-make-check.sh b/run-make-check.sh index 192a4001ff4..2c1f787ff8c 100755 --- a/run-make-check.sh +++ b/run-make-check.sh @@ -59,7 +59,7 @@ function main() { cmake_opts+=" -DWITH_SEASTAR=ON" fi configure $cmake_opts $@ - build tests && echo "make check: successful run on $(git rev-parse HEAD)" + build tests && echo "make check: successful build on $(git rev-parse HEAD)" run } -- 2.39.5