Make WordPress Core


Ignore:
Timestamp:
01/28/2019 05:20:06 PM (7 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Replace spaced indentation sections of phpunit.xml.dist, multisite.xml, and build.xml with tabs.

Props netweb, desrosj.
See #43218.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpunit.xml.dist

    r44702 r44705  
    11<phpunit
    2         bootstrap="tests/phpunit/includes/bootstrap.php"
    3         backupGlobals="false"
    4         colors="true"
    5         beStrictAboutTestsThatDoNotTestAnything="true"
    6         >
    7     <testsuites>
    8         <!-- Default test suite to run all tests -->
    9         <testsuite name="default">
    10             <directory suffix=".php">tests/phpunit/tests</directory>
    11             <file phpVersion="5.3.0">tests/phpunit/tests/actions/closures.php</file>
    12             <file phpVersion="5.3.0">tests/phpunit/tests/image/editor.php</file>
    13             <file phpVersion="5.3.0">tests/phpunit/tests/image/editorGd.php</file>
    14             <file phpVersion="5.3.0">tests/phpunit/tests/image/editorImagick.php</file>
    15             <file phpVersion="5.3.0">tests/phpunit/tests/oembed/headers.php</file>
    16             <exclude>tests/phpunit/tests/actions/closures.php</exclude>
    17             <exclude>tests/phpunit/tests/image/editor.php</exclude>
    18             <exclude>tests/phpunit/tests/image/editorGd.php</exclude>
    19             <exclude>tests/phpunit/tests/image/editorImagick.php</exclude>
    20             <exclude>tests/phpunit/tests/oembed/headers.php</exclude>
    21             <exclude>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</exclude>
    22         </testsuite>
    23         <!-- Sets the DOING_AUTOSAVE constant, so needs to be run last -->
    24         <testsuite name="restapi-autosave">
    25             <file>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</file>
    26         </testsuite>
    27     </testsuites>
    28     <groups>
    29         <exclude>
    30             <group>ajax</group>
    31             <group>ms-files</group>
    32             <group>ms-required</group>
    33             <group>external-http</group>
    34         </exclude>
    35     </groups>
    36     <logging>
    37         <log type="junit" target="tests/phpunit/build/logs/junit.xml" />
    38     </logging>
    39     <php>
    40         <const name="WP_RUN_CORE_TESTS" value="1" />
    41     </php>
     2                bootstrap="tests/phpunit/includes/bootstrap.php"
     3                backupGlobals="false"
     4                colors="true"
     5                beStrictAboutTestsThatDoNotTestAnything="true"
     6                >
     7        <testsuites>
     8                <!-- Default test suite to run all tests -->
     9                <testsuite name="default">
     10                        <directory suffix=".php">tests/phpunit/tests</directory>
     11                        <file phpVersion="5.3.0">tests/phpunit/tests/actions/closures.php</file>
     12                        <file phpVersion="5.3.0">tests/phpunit/tests/image/editor.php</file>
     13                        <file phpVersion="5.3.0">tests/phpunit/tests/image/editorGd.php</file>
     14                        <file phpVersion="5.3.0">tests/phpunit/tests/image/editorImagick.php</file>
     15                        <file phpVersion="5.3.0">tests/phpunit/tests/oembed/headers.php</file>
     16                        <exclude>tests/phpunit/tests/actions/closures.php</exclude>
     17                        <exclude>tests/phpunit/tests/image/editor.php</exclude>
     18                        <exclude>tests/phpunit/tests/image/editorGd.php</exclude>
     19                        <exclude>tests/phpunit/tests/image/editorImagick.php</exclude>
     20                        <exclude>tests/phpunit/tests/oembed/headers.php</exclude>
     21                        <exclude>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</exclude>
     22                </testsuite>
     23                <!-- Sets the DOING_AUTOSAVE constant, so needs to be run last -->
     24                <testsuite name="restapi-autosave">
     25                        <file>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</file>
     26                </testsuite>
     27        </testsuites>
     28        <groups>
     29                <exclude>
     30                        <group>ajax</group>
     31                        <group>ms-files</group>
     32                        <group>ms-required</group>
     33                        <group>external-http</group>
     34                </exclude>
     35        </groups>
     36        <logging>
     37                <log type="junit" target="tests/phpunit/build/logs/junit.xml" />
     38        </logging>
     39        <php>
     40                <const name="WP_RUN_CORE_TESTS" value="1" />
     41        </php>
    4242        <listeners>
    4343                <listener class="SpeedTrapListener" file="tests/phpunit/includes/listener-loader.php">
Note: See TracChangeset for help on using the changeset viewer.