2010-09-17 12:10:54 -07:00
|
|
|
#!/bin/sh
|
2010-01-24 07:36:39 +13:00
|
|
|
|
2010-09-17 12:10:54 -07:00
|
|
|
# Run tests
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
# Adapted from a Makefile to a shell script by Carl Worth (2010)
|
|
|
|
|
|
|
|
cd $(dirname "$0")
|
|
|
|
|
2010-09-20 14:36:31 -07:00
|
|
|
TESTS="basic new search json thread-naming reply dump-restore uuencode thread-order author-order from-guessing long-id encoding"
|
2010-09-17 15:58:39 -07:00
|
|
|
|
2010-09-17 12:10:54 -07:00
|
|
|
# Clean up any results from a previous run
|
|
|
|
rm -r test-results >/dev/null 2>/dev/null
|
|
|
|
|
|
|
|
# Run the tests
|
2010-09-17 15:58:39 -07:00
|
|
|
for test in $TESTS; do
|
2010-09-20 13:45:29 -07:00
|
|
|
./$test "$@"
|
2010-09-17 12:10:54 -07:00
|
|
|
done
|
|
|
|
|
|
|
|
# Report results
|
2010-09-17 15:58:39 -07:00
|
|
|
./aggregate-results.sh test-results/*
|
2010-09-17 12:10:54 -07:00
|
|
|
|
|
|
|
# Clean up
|
2010-09-17 15:58:39 -07:00
|
|
|
rm -r test-results
|