Separate framework and modules tests logically

refs #3494
This commit is contained in:
Alexander A. Klimov 2018-06-28 14:26:37 +02:00
parent 966148e8f0
commit fd239fa40c
1 changed files with 9 additions and 3 deletions

View File

@ -4,11 +4,13 @@
<!--
Unit testing
-->
<testsuite name="unit">
<testsuite name="unit-framework">
<directory>../../test/php/application/</directory>
<directory>../../test/php/library/</directory>
</testsuite>
<!-- Module tests are independent from core tests -->
<!-- Module tests are independent from core tests -->
<testsuite name="unit-modules">
<directory>../*/test/php</directory>
<exclude>../*/test/php/regression</exclude>
</testsuite>
@ -16,8 +18,12 @@
<!--
Regression testing
-->
<testsuite name="regression">
<testsuite name="regression-framework">
<directory>../../test/php/regression/</directory>
</testsuite>
<!-- Module tests are independent from core tests -->
<testsuite name="regression-modules">
<directory>../*/test/php/regression</directory>
</testsuite>
</testsuites>