ipfs-cluster/sharness/run-sharness-tests.sh
Wyatt f547077700 Sharness Tests updated
I have attempted to address all of the comments on the original PR.
The sharness tests now make use of prereqs, see test-lib for details
and helper functions.
2017-05-05 09:09:48 -07:00

16 lines
240 B
Bash
Executable File

#!/bin/sh
# Run tests
cd "$(dirname "$0")"
for i in t*.sh;
do
echo "*** $i ***"
./$i
done
# Aggregate Results
echo "Aggregating..."
for f in test-results/*.counts; do
echo "$f";
done | bash lib/sharness/aggregate-results.sh