blob: 9b25fa679c7d26322a4b6f9e897e5b00ac39d8ab [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_RUN_TESTS
7#define TS_TEST_RUNNER_RUN_TESTS
8
9/**
10 * Input parmeters consist of test spec (defined in test_spec.h) to
11 * define the set of tests to run.
12 */
13#include "test_spec.h"
14
15/* Output parameters consist of a test summary followed
16 * by a setof [0..*] variable length test result records.
17 * Each test result has a fixed size structure followed
18 * by variable length parameters that specify the test
19 * name and group.
20 */
21#include "test_result.h"
22
23#endif /* TS_TEST_RUNNER_RUN_TESTS */