File: tests_run

package info (click to toggle)
php-mail 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 228 kB
  • sloc: php: 1,110; xml: 164; sh: 9; makefile: 9
file content (14 lines) | stat: -rwxr-xr-x 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

pear_pkg=`ls | grep Mail`

cd ${pear_pkg}
PKG_ROOT=`pwd`
cd tests

for i in *.phpt ; do
	echo Testing with ${i}
	phpunit -d include_path=".:/usr/share/php:${PKG_ROOT}" ${i}
done