Skip to content

Commit 19c1225

Browse files
Merge branch 'develop' into 171-grbcxx-when-performing-shared-linking-still-selects-static-libraries
2 parents 409b0a8 + 68b6256 commit 19c1225

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tests/performance/performancetests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ runMultiplicationKernels()
338338
echo "Test DISABLED: no sparse level-3 operations recommended for 1D distributions."
339339
echo " "
340340
elif [ "$i" -gt "14" ]; then
341-
echo "Tests DISABLED: by default, long-running sparse matrix--sparse matrix multiplications are disabled (skipping dataset ${dataSet})."
341+
echo "Test DISABLED: by default, long-running sparse matrix--sparse matrix multiplications are disabled (skipping dataset ${dataSet})."
342342
echo " "
343343
else
344344
$runner ${TEST_BIN_DIR}/driver_spmspm_${backend} ${INPUT_DIR}/${dataSet} ${INPUT_DIR}/${dataSet} ${parseMode} &> ${TEST_OUT_DIR}/driver_spmspm_${backend}_${dataSet}

tests/summarise.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ fi
1515

1616
NUM_OK=`grep -i "Test OK" "$1" | wc -l`
1717
NUM_DISABLED=`grep -i "Test DISABLED" "$1" | wc -l`
18+
NUM_CDISABLED=`grep -i "Tests DISABLED" "$1" | wc -l`
1819
NUM_FAILED=`grep -i "Test FAILED" "$1" | wc -l`
1920

2021
echo "Summary of $1:"
2122
printf " %4s PASSED\n" ${NUM_OK}
2223
printf " %4s SKIPPED\n" ${NUM_DISABLED}
2324
printf " %4s FAILED\n" ${NUM_FAILED}
25+
printf " %4s TEST CATEGORIES SKIPPED\n" ${NUM_CDISABLED}
2426

2527
if [ ${NUM_FAILED} -gt 0 ]; then
2628
printf "\nOne or more failures detected. Log contents:\n\n"

0 commit comments

Comments
 (0)