File: test.sh

package info (click to toggle)
syncmaildir 1.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,180 kB
  • ctags: 476
  • sloc: ansic: 6,338; sh: 1,969; makefile: 258; xml: 14
file content (17 lines) | stat: -rwxr-xr-x 333 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# set -x

SUITES=${SUITES:-"mddiff client-server pull-push benchmarks migration"}
BASE=$PWD

. $BASE/tests.d/common

for TESTSUITE in $SUITES; do
	run_tests $@
done
for TESTSUITE in $SUITES; do
	if [ -x $BASE/tests.d/$TESTSUITE/summarize.sh -a -z "$2" ]; then
		BASE=$BASE $BASE/tests.d/$TESTSUITE/summarize.sh
	fi
done