File: tests_run

package info (click to toggle)
php-http-upload 1.0.0b2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 216 kB
  • sloc: php: 695; xml: 109; sh: 9; makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 204 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 HTTP_Upload`

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