]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
run-make-check.sh: fix the log message 35976/head
authorIlya Dryomov <idryomov@gmail.com>
Fri, 3 Jul 2020 10:24:04 +0000 (12:24 +0200)
committerIlya Dryomov <idryomov@gmail.com>
Wed, 8 Jul 2020 12:11:45 +0000 (14:11 +0200)
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 <idryomov@gmail.com>
run-make-check.sh

index 192a4001ff419b99a4d869d857f24c26db580e6d..2c1f787ff8c7cc4290c849ee9d743aedacbd11db 100755 (executable)
@@ -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
 }