1 /*
2  * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #include <service/test_runner/provider/test_runner_backend.h>
7 
8 /**
9  * The null backend is a non-existent test_runner.  An implementation of
10  * the test_runner_register_default_backend() function is provided but it does
11  * nothing.  This component should be used in deployments where there is
12  * no need for a default test_runner.
13  */
test_runner_register_default_backend(struct test_runner_provider * context)14 void test_runner_register_default_backend(struct test_runner_provider *context)
15 {
16     /* Don't register anything */
17     (void)context;
18 }