From c13a5b872094ac61957b8f0e8eb02bc5f1e52b0e Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Tue, 7 Feb 2023 16:58:58 +0200 Subject: [PATCH] windows: fix running "ceph status" One of the Windows scripts tries to do "ceph status" before and after executing the ceph tests. The issue is that it's using a wrong path. The ceph dir is actually located in the home dir. We'll update the script accordingly. Signed-off-by: Lucian Petrut --- scripts/ceph-windows/run_tests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ceph-windows/run_tests b/scripts/ceph-windows/run_tests index c6def137..56f16a9d 100644 --- a/scripts/ceph-windows/run_tests +++ b/scripts/ceph-windows/run_tests @@ -50,7 +50,7 @@ function collect_artifacts() { rm -rf $WORKSPACE/artifacts mkdir -p $WORKSPACE/artifacts - SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec $WORKSPACE/ceph/build/bin/ceph status + SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec ./ceph/build/bin/ceph status scp_download /workspace/test_results $WORKSPACE/artifacts/test_results if [[ "$INCLUDE_USERSPACE_CRASH_DUMPS" = true ]]; then @@ -72,7 +72,7 @@ function collect_artifacts() { trap collect_artifacts EXIT # View cluster status before test run -SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec $WORKSPACE/ceph/build/bin/ceph status +SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec ./ceph/build/bin/ceph status # # Run the Windows tests # -- 2.39.5