Jimmy Brisson | a48f507 | 2020-04-02 15:19:16 -0500 | [diff] [blame^] | 1 | Build Flags |
| 2 | =========== |
| 3 | |
| 4 | The platform may define build flagsto to control inclusion or exclusion of |
| 5 | certain tests. These flags must be defined in the platform makefile which |
| 6 | is included by the build system. |
| 7 | |
| 8 | - **PLAT_TESTS_SKIP_LIST** |
| 9 | |
| 10 | This build flag can be defined by the platform to control exclusion of some |
| 11 | testcases from the default test plan for a platform. If used this needs to |
| 12 | point to a text file which follows the following criteria: |
| 13 | |
| 14 | - Contain a list of tests to skip for this platform. |
| 15 | |
| 16 | - Specify 1 test per line, using the following format: |
| 17 | |
| 18 | :: |
| 19 | |
| 20 | testsuite_name/testcase_name |
| 21 | |
| 22 | where ``testsuite_name`` and ``testcase_name`` are the names that appear in |
| 23 | the XML tests file. |
| 24 | |
| 25 | - Alternatively, it is possible to disable a test suite entirely, which will |
| 26 | disable all test cases part of this test suite. To do so, only specify the |
| 27 | test suite name, omitting the ``/testcase_name`` part. |
| 28 | |
| 29 | -------------- |
| 30 | |
| 31 | *Copyright (c) 2019, Arm Limited. All rights reserved.* |