From cb352484f1dfbd49b7b7780e6df9e71bc1d6352f Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Sun, 15 Dec 2013 21:34:37 +0100 Subject: [PATCH] qa: silence cephtool tests cleanup The file removal installed to be triggered when the script stops must not fail if the file does not exist. Signed-off-by: Loic Dachary --- qa/workunits/cephtool/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/cephtool/test.sh b/qa/workunits/cephtool/test.sh index 94f37dd118d..063b2594d98 100755 --- a/qa/workunits/cephtool/test.sh +++ b/qa/workunits/cephtool/test.sh @@ -26,7 +26,7 @@ expect_false() } TMPFILE=/tmp/test_invalid.$$ -trap "rm $TMPFILE" 0 +trap "rm -f $TMPFILE" 0 function check_response() { -- 2.47.3