From 7958ddfd7e5bc9278bcba939b55b5b90e83529c2 Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Tue, 14 May 2019 20:07:36 +0000 Subject: [PATCH] test(unit): Fix warning in unit test script Eliminated error/warning message if attempt to delete .gcov files fails when there are none to delete. Change-Id: Ib552c3e73161ca5572d220f03498aba878a3bfc8 Signed-off-by: E. Scott Daniels --- test/unit_test.ksh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit_test.ksh b/test/unit_test.ksh index 929976c..9953733 100755 --- a/test/unit_test.ksh +++ b/test/unit_test.ksh @@ -353,7 +353,7 @@ do -x) gen_xml=1 force_discounting=1 trigger_discount_str="WARN|FAIL|PASS" # check all outcomes for each module - rm *cov.xml + rm -fr *cov.xml ;; -h) usage; exit 0;; @@ -397,7 +397,7 @@ else fi -rm *.gcov # ditch the previous coverage files +rm -fr *.gcov # ditch the previous coverage files ut_errors=0 # unit test errors (not coverage errors) errors=0 -- 2.16.6