mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 19:37:46 +08:00
I moved installed things into own dirs bin and lib. @chriscool sorry to move things around again, the top level test dir was getting a bit clutterd.
18 lines
409 B
Bash
Executable File
18 lines
409 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="lib/sharness/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"
|