blob: c31b367bbc8e1516bb23c37534025434c262dd5f [file] [log] [blame]
julhal013ec4c322021-02-05 17:30:49 +00001/*
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 */
14enum
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 */