File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
if [ -n " $1 " ]; then
11
11
BOOTSTRAP=" $1 "
12
+ MEASURECOVERAGE=" 0"
12
13
else
13
14
# You need to run `composer install` to generate this file.
14
15
BOOTSTRAP=" vendor/autoload.php"
16
+ MEASURECOVERAGE=" 1"
15
17
fi
16
18
17
19
# loading bootstrap should output nothing
18
20
load=$( php -r " require '$BOOTSTRAP ';" )
19
21
test -z " $load "
20
22
21
- ./test/phpunit.sh " $BOOTSTRAP "
23
+ ./test/phpunit.sh " $BOOTSTRAP " " $MEASURECOVERAGE "
22
24
echo " "
Original file line number Diff line number Diff line change 55
55
gpg --verify phpunit.phar.asc phpunit.phar
56
56
if [ $? -eq 0 ]; then
57
57
echo
58
+ if [ " $2 " -eq " 1" ]; then
59
+ COVERAGE1_ARGS=" --coverage-clover=$parentdir /coverage1.xml -c $parentdir /test/phpunit.xml"
60
+ COVERAGE2_ARGS=" --coverage-clover=$parentdir /coverage2.xml -c $parentdir /test/phpunit.xml"
61
+ else
62
+ COVERAGE1_ARGS=" "
63
+ COVERAGE2_ARGS=" "
64
+ fi
58
65
echo -e " \033[33mBegin Unit Testing\033[0m"
59
66
# Run the test suite with normal func_overload.
60
- php -d mbstring.func_overload=0 phpunit.phar --coverage-clover= " $parentdir /coverage1.xml " -c " $parentdir /test/phpunit.xml " --bootstrap " $parentdir /$1 " " $parentdir /test/unit" && \
67
+ php -d mbstring.func_overload=0 phpunit.phar $COVERAGE1_ARGS --bootstrap " $parentdir /$1 " " $parentdir /test/unit" && \
61
68
# Run the test suite again with funky func_overload.
62
- php -d mbstring.func_overload=7 phpunit.phar --coverage-clover= " $parentdir /coverage2.xml " -c " $parentdir /test/phpunit.xml " --bootstrap " $parentdir /$1 " " $parentdir /test/unit"
69
+ php -d mbstring.func_overload=7 phpunit.phar $COVERAGE2_ARGS --bootstrap " $parentdir /$1 " " $parentdir /test/unit"
63
70
EXITCODE=$?
64
71
# Cleanup
65
72
if [ " $clean " -eq 1 ]; then
You can’t perform that action at this time.
0 commit comments