projects
/
fusionforge
/
fusionforge.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
project home
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merged new version of OSLC plugin from 5.1
[fusionforge/fusionforge.git]
/
tools
/
VM-scripts
/
run-testsuite.sh
1
#! /bin/sh
2
3
export CONFIG_PHP=/root/fusionforge/tests/func/config.php.ffsandbox
4
5
# Run the phpunit + Selenium functional tests
6
cd /root/fusionforge/tests
7
if [ "$*" = "" ] ; then
8
phpunit --verbose SeleniumTests.php
9
else
10
for i in $* ; do
11
phpunit --verbose $i
12
done
13
fi