diff options
Diffstat (limited to 'tests/volume.rc')
-rw-r--r-- | tests/volume.rc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/volume.rc b/tests/volume.rc index 9ecb24d405c..e8dd2eeb778 100644 --- a/tests/volume.rc +++ b/tests/volume.rc @@ -38,12 +38,12 @@ function generate_client_statedump { local fpath="" client_pid=$1 #remove old stale statedumps - rm -f /tmp/glusterdump.$client_pid.dump.* 2>/dev/null + rm -f $statedumpdir/glusterdump.$client_pid.dump.* 2>/dev/null kill -USR1 $client_pid #Wait till the statedump is generated sleep 1 - fname=$(ls /tmp | grep -E "glusterdump.$client_pid.dump.*") - echo /tmp/$fname + fname=$(ls $statedumpdir | grep -E "glusterdump.$client_pid.dump.*") + echo $statedumpdir/$fname } function generate_mount_statedump { |