Skip to content

Commit 71df824

Browse files
committed
NLT updates
Skip-func-test: true Signed-off-by: Phil Henderson <phillip.henderson@hpe.com>
1 parent b136b30 commit 71df824

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

ci/unit/test_nlt_node.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ nlt_args+=(--dfuse-dir /localhome/jenkins/)
4747
nlt_args+=(--log-usage-save nltir.xml)
4848
nlt_args+=(--log-usage-export nltr.json)
4949

50-
echo "[DEBUG] BULLSEYE_DIR: ${BULLSEYE_DIR:-}"
51-
echo "[DEBUG] COVFILE: ${COVFILE:-}"
52-
5350
: "${BULLSEYE_DIR:=/opt/BullseyeCoverage}"
5451
if [ -d "${BULLSEYE_DIR}" ]; then
5552
export COVFILE="/tmp/test.cov"
@@ -59,17 +56,14 @@ if [ -d "${BULLSEYE_DIR}" ]; then
5956
nlt_args+=(--memcheck no)
6057
fi
6158

62-
echo "[DEBUG] BULLSEYE_DIR: ${BULLSEYE_DIR:-}"
63-
echo "[DEBUG] COVFILE: ${COVFILE:-}"
64-
65-
if [ -e "${COVFILE}" ]; then
59+
if [ -e "${COVFILE:-}" ]; then
6660
echo "Code coverage before running unit tests:"
6761
/opt/BullseyeCoverage/bin/covdir --file "${COVFILE}" || true
6862
fi
6963

7064
HTTPS_PROXY="${DAOS_HTTPS_PROXY:-}" ./utils/node_local_test.py "${nlt_args[@]}" all
7165

72-
if [ -e "${COVFILE}" ]; then
66+
if [ -e "${COVFILE:-}" ]; then
7367
echo "Code coverage after running unit tests:"
7468
/opt/BullseyeCoverage/bin/covdir --file "${COVFILE}" || true
7569
fi

0 commit comments

Comments
 (0)