echo MMTests: OOM Killer

# Work out times running test
printf "%-40s" "OOM Kill Firings"
for DIRNAME in $KERNEL_BASE $KERNEL_COMPARE; do
	if [ ! -e tests-timestamp-$DIRNAME ]; then
		continue
	fi
	TRIGGERED=`grep "Out of memory: " ../*$DIRNAME-*-console.log | wc -l`
	printf "%10d" $TRIGGERED
done
echo
