test-aggregate-results.sh 398 Bytes
Newer Older
1 2 3 4 5 6 7 8
#!/bin/sh
#
# Script to aggregate results using Sharness
#
# Copyright (c) 2014 Christian Couder
# MIT Licensed; see the LICENSE file in this repository.
#

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
9
SHARNESS_AGGREGATE="./aggregate-results.sh"
10 11 12 13 14 15 16 17

test -f "$SHARNESS_AGGREGATE" || {
	echo >&2 "Cannot find: $SHARNESS_AGGREGATE"
	echo >&2 "Please check Sharness installation."
	exit 1
}

ls test-results/t*-*.sh.*.counts | "$SHARNESS_AGGREGATE"