blob: 7f9854d0ff667e9b7328da8e5db4dd57751744f6 [file] [log] [blame]
Jimmy Brissona48f5072020-04-02 15:19:16 -05001Build Flags
2===========
3
4The platform may define build flagsto to control inclusion or exclusion of
5certain tests. These flags must be defined in the platform makefile which
6is included by the build system.
7
8- **PLAT_TESTS_SKIP_LIST**
9
10This build flag can be defined by the platform to control exclusion of some
11testcases from the default test plan for a platform. If used this needs to
12point 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.*