mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 05:52:20 +08:00
18 lines
398 B
Bash
Executable File
18 lines
398 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Script to aggregate results using Sharness
|
|
#
|
|
# Copyright (c) 2014 Christian Couder
|
|
# MIT Licensed; see the LICENSE file in this repository.
|
|
#
|
|
|
|
SHARNESS_AGGREGATE="./aggregate-results.sh"
|
|
|
|
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"
|