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_STATUS_H |
| 8 | #define TS_TEST_RUNNER_STATUS_H |
| 9 | |
| 10 | /** |
| 11 | * Test runner service level statos codes |
| 12 | */ |
| 13 | enum |
| 14 | { |
| 15 | /** |
| 16 | * Returned if an operation completed successfully. |
| 17 | * This doesn't mean that requested tests passed |
| 18 | * but rather that the test runner operation |
| 19 | * completed normally. |
| 20 | */ |
| 21 | TS_TEST_RUNNER_STATUS_SUCCESS = 0, |
| 22 | |
| 23 | /** |
| 24 | * Generic error occurred. |
| 25 | */ |
| 26 | TS_TEST_RUNNER_STATUS_ERROR = -1, |
| 27 | |
| 28 | /** |
| 29 | * Invalid test resuts returned by service provider. |
| 30 | */ |
| 31 | TS_TEST_RUNNER_STATUS_INVALID_TEST_RESULTS = -2 |
| 32 | }; |
| 33 | |
| 34 | #endif /* TS_TEST_RUNNER_STATUS_H */ |