File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 1515
1616NUM_OK=` grep -i " Test OK" " $1 " | wc -l`
1717NUM_DISABLED=` grep -i " Test DISABLED" " $1 " | wc -l`
18+ NUM_CDISABLED=` grep -i " Tests DISABLED" " $1 " | wc -l`
1819NUM_FAILED=` grep -i " Test FAILED" " $1 " | wc -l`
1920
2021echo " Summary of $1 :"
2122printf " %4s PASSED\n" ${NUM_OK}
2223printf " %4s SKIPPED\n" ${NUM_DISABLED}
2324printf " %4s FAILED\n" ${NUM_FAILED}
25+ printf " %4s TEST CATEGORIES SKIPPED\n" ${NUM_CDISABLED}
2426
2527if [ ${NUM_FAILED} -gt 0 ]; then
2628 printf " \nOne or more failures detected. Log contents:\n\n"
You can’t perform that action at this time.
0 commit comments