forked from ircmaxell/php-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
executable file
·46 lines (46 loc) · 1.87 KB
/
phpunit.xml.dist
File metadata and controls
executable file
·46 lines (46 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./test/bootstrap.php">
<php>
<env name="LD_LIBRARY_PATH" value="./.llvm" force="true"/>
</php>
<coverage>
<include>
<directory suffix=".php">./lib</directory>
</include>
</coverage>
<testsuites>
<testsuite name="PHPCompiler Compliance Test Suites">
<file>./test/compliance/JITTest.php</file>
<file>./test/compliance/VMTest.php</file>
</testsuite>
<testsuite name="PHPCompiler Unit Test Suites">
<directory suffix=".php">./test/unit</directory>
</testsuite>
<testsuite name="PHPCompiler Macro Test Suites">
<file>./test/macro/MacroTest.php</file>
</testsuite>
<testsuite name="PHPCompiler Real World Test Suites">
<file>./test/real/RealWorldTest.php</file>
<file>./test/real/ServeTest.php</file>
<file>./test/real/ServeAotTest.php</file>
</testsuite>
<testsuite name="PHPCompiler AOT Test Suites">
<file>./test/aot/AotTest.php</file>
<file>./test/aot/ExampleWebAotTest.php</file>
<file>./test/aot/StdlibWebBuiltinsTest.php</file>
<file>./test/aot/RuntimeSuperglobalRefreshTest.php</file>
<file>./test/aot/NestedSuperglobalsAotTest.php</file>
<file>./test/aot/WebAppNumberFormatTest.php</file>
</testsuite>
</testsuites>
</phpunit>