blob: 2b54a345e425bd1164c6e83f7e333166ad9b33b1 [file] [log] [blame]
Fathi Boudra422bf772019-12-02 11:10:16 +02001#
Paul Sokolovsky7ffffa02023-06-14 14:07:35 +03002# Copyright (c) 2019-2023 Arm Limited. All rights reserved.
Fathi Boudra422bf772019-12-02 11:10:16 +02003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
Paul Sokolovsky7ffffa02023-06-14 14:07:35 +03007Subdirectories in this directory map test groups to a set of individual
8build/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 Boudra422bf772019-12-02 11:10:16 +020020Files in this directory map build configs to their run configs. BUILD_CONFIG and
21RUN_CONFIG environment variables are set accordingly.
22
Paul Sokolovsky7ffffa02023-06-14 14:07:35 +030023Options inside build/run config files are in the Java property file format: VAR=value;
24so, no quoting the RHS.
Paul Sokolovsky5df32852023-06-20 14:17:00 +030025
26If a build/run config file has ".inactive" suffix, corresponding config will
27be skipped (not even built). This can be used as an alternative to complete
28deletion of the file if the config has known issues with compilation or testing,
29to avoid failing entire CI jobs while those issues are addressed.