Fix reporting, use only existing files in hpc report

This commit is contained in:
Harendra Kumar 2020-12-31 20:41:10 +05:30
parent a5a6efc83a
commit c0065208f2

View File

@ -147,7 +147,11 @@ then
TIXFILES=
for i in $TARGETS
do
TIXFILES+="$(get_tix_file ${i}) "
tixfile="$(get_tix_file ${i})"
if test -f "$tixfile"
then
TIXFILES+="$tixfile "
fi
done
ALLTIX=$BUILD_DIR/hpc/all.tix