From c9b2336367306183ce472d1d4eb28baf43aa8193 Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Mon, 1 Sep 2025 00:20:19 +0530 Subject: [PATCH] qa: set -x for qa/workunits/libcephfs/test.sh LibCephFS unit tests are compiled into different binary files and run after another but without logging name of the binary being executed, which can make it bit difficult to find out which binary/test group is being run. Therefore "set -x" in the script so that binary name/test group is printed before tests run. Signed-off-by: Rishabh Dave --- qa/workunits/libcephfs/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/libcephfs/test.sh b/qa/workunits/libcephfs/test.sh index dbddf9cdb8f..950ad8fb137 100755 --- a/qa/workunits/libcephfs/test.sh +++ b/qa/workunits/libcephfs/test.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh -ex ceph_test_libcephfs ceph_test_libcephfs_access -- 2.39.5