summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-10-14 11:46:38 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-11-01 17:32:43 +0100
commit8c7d14d3df04772649e3d9d293a4fdd9843f0ffe (patch)
treeb3796ff9fb89456446571c3e7b570a0ae3ad8abe
parent7d52132ada2f00961cc6fbb4d0bed8bc45b295e1 (diff)
tests: Add env variable to disable code coverage collection
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--public_html/index.php2
-rwxr-xr-xrun-tests.sh7
2 files changed, 6 insertions, 3 deletions
diff --git a/public_html/index.php b/public_html/index.php
index 6d81b244c..37526d903 100644
--- a/public_html/index.php
+++ b/public_html/index.php
@@ -230,7 +230,7 @@ function guidv4()
$testname = null;
-if (getenv("ENVIRONMENT") === "testsuite") {
+if (getenv("ENVIRONMENT") === "testsuite" && getenv("COLLECT_COVERAGE") == 1) {
if (function_exists("phpdbg_get_executable")) {
$testname = implode(' ', $argv);
} elseif (isset($_SERVER["HTTP_X_TESTSUITE_TESTNAME"])) {
diff --git a/run-tests.sh b/run-tests.sh
index a83e8ea25..a65800fb0 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -4,6 +4,7 @@
#
export ENVIRONMENT="testsuite"
+export COLLECT_COVERAGE=1
startdir="$(dirname "$0")"
@@ -37,6 +38,8 @@ phpdbg -qrr index.php tools update_database || exit 1
prove --ext .php --state=failed,save --timer --comments --exec 'phpdbg -qrr index.php tools test' --recurse "${@:-application/test/tests/}" || exit 1
-php index.php tools generate_coverage_report
-rm -rf test-coverage-data
+if (($COLLECT_COVERAGE)); then
+ php index.php tools generate_coverage_report
+ rm -rf test-coverage-data
+fi