1 /* 2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved. 3 * SPDX-License-Identifier: BSD-3-Clause 4 */ 5 6 #ifndef TS_TEST_RUNNER_TEST_SPEC 7 #define TS_TEST_RUNNER_TEST_SPEC 8 9 /** 10 * Variable length parameters used to specify a test or 11 * group of tests. A missing parameter is interpreted 12 * as a wildcard. 13 */ 14 enum 15 { 16 /* Specifies the name of a particular test to run. 17 * The parameter should consist of an ascii string 18 * without a zero terminator. 19 */ 20 TS_TEST_RUNNER_TEST_SPEC_TAG_NAME = 1, 21 22 /* Specifies a group of tests to run. 23 * The parameter should consist of an ascii string 24 * without a zero terminator. 25 */ 26 TS_TEST_RUNNER_TEST_SPEC_TAG_GROUP = 2 27 }; 28 29 #endif /* TS_TEST_RUNNER_TEST_SPEC */ 30