julhal01 | 3ec4c32 | 2021-02-05 17:30:49 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef TS_TEST_RUNNER_OPCODES_H |
| 8 | #define TS_TEST_RUNNER_OPCODES_H |
| 9 | |
| 10 | /** |
| 11 | * C/C++ definition of test_runner service opcodes |
| 12 | */ |
Julian Hall | c2d78b5 | 2021-07-28 09:36:51 +0100 | [diff] [blame^] | 13 | |
| 14 | #define TS_TEST_RUNNER_OPCODE_BASE (0x0100) |
| 15 | #define TS_TEST_RUNNER_OPCODE_RUN_TESTS (TS_TEST_RUNNER_OPCODE_BASE + 1) |
| 16 | #define TS_TEST_RUNNER_OPCODE_LIST_TESTS (TS_TEST_RUNNER_OPCODE_BASE + 2) |
julhal01 | 3ec4c32 | 2021-02-05 17:30:49 +0000 | [diff] [blame] | 17 | |
| 18 | #endif /* TS_TEST_RUNNER_OPCODES_H */ |