Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 1 | # |
Paul Sokolovsky | 7ffffa0 | 2023-06-14 14:07:35 +0300 | [diff] [blame] | 2 | # Copyright (c) 2019-2023 Arm Limited. All rights reserved. |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
Paul Sokolovsky | 7ffffa0 | 2023-06-14 14:07:35 +0300 | [diff] [blame] | 7 | Subdirectories in this directory map test groups to a set of individual |
| 8 | build/run configs and the parameters. Format is: |
| 9 | |
| 10 | |
| 11 | +-test_config1 |
| 12 | | +-build_config1:run_config1 |
| 13 | | | \- (contents are additional options, if any) |
| 14 | | \-build_config1:run_config1 |
| 15 | | \- (contents are additional options, if any) |
| 16 | +-test_config2 |
| 17 | | ... |
| 18 | |
| 19 | |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 20 | Files in this directory map build configs to their run configs. BUILD_CONFIG and |
| 21 | RUN_CONFIG environment variables are set accordingly. |
| 22 | |
Paul Sokolovsky | 7ffffa0 | 2023-06-14 14:07:35 +0300 | [diff] [blame] | 23 | Options inside build/run config files are in the Java property file format: VAR=value; |
| 24 | so, no quoting the RHS. |
Paul Sokolovsky | 5df3285 | 2023-06-20 14:17:00 +0300 | [diff] [blame] | 25 | |
| 26 | If a build/run config file has ".inactive" suffix, corresponding config will |
| 27 | be skipped (not even built). This can be used as an alternative to complete |
| 28 | deletion of the file if the config has known issues with compilation or testing, |
| 29 | to avoid failing entire CI jobs while those issues are addressed. |