From: Ilya Dryomov Date: Fri, 3 Jul 2020 10:24:04 +0000 (+0200) Subject: run-make-check.sh: fix the log message X-Git-Tag: v16.1.0~1798^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F35976%2Fhead;p=ceph.git 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 --- diff --git a/run-make-check.sh b/run-make-check.sh index 192a4001ff41..2c1f787ff8c7 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 }