blob: b9fa7946be734f126758a68f1ad8923e4f85aedc [file] [log] [blame]
mardyk0182389fb2023-09-25 16:34:56 -05001/*
2 * Copyright (c) 2023, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
mardyk01f5b46352023-10-24 16:23:23 -05007#include <sdei_fuzz_helper.h>
8#include <tsp_fuzz_helper.h>
mardyk0182389fb2023-09-25 16:34:56 -05009
mardyk0182389fb2023-09-25 16:34:56 -050010
11/*
12 * Invoke the SMC call based on the function name specified.
13 */
14void runtestfunction(char *funcstr)
15{
mardyk01f5b46352023-10-24 16:23:23 -050016 run_sdei_fuzz(funcstr);
17 run_tsp_fuzz(funcstr);
mardyk0182389fb2023-09-25 16:34:56 -050018}