diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2020-07-03 12:24:04 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2020-07-08 14:11:45 +0200 |
commit | 113629cb9a9b1716ab8f5ff52a1ed89536551106 (patch) | |
tree | 50eb958c156b6de52675ebd066f965c28d61df29 /run-make-check.sh | |
parent | Merge pull request #35816 from idryomov/wip-msgr21-fix-reuse (diff) | |
download | ceph-113629cb9a9b1716ab8f5ff52a1ed89536551106.tar.xz ceph-113629cb9a9b1716ab8f5ff52a1ed89536551106.zip |
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 <idryomov@gmail.com>
Diffstat (limited to 'run-make-check.sh')
-rwxr-xr-x | run-make-check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |