File: tests_run

package info (click to toggle)
php-db 1.7.14-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 984 kB
  • sloc: php: 6,933; pascal: 1,001; xml: 213; sh: 31; makefile: 13
file content (14 lines) | stat: -rwxr-xr-x 195 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 DB`

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