blob: 60cda80c2b3d753e20e5be5826dd10b4a69b765d [file] [log] [blame]
/*
* Copyright (c) 2017-2019, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#ifndef __SST_TESTS_H__
#define __SST_TESTS_H__
#include "test/framework/test_framework.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* \brief Register testsuite for the PSA protected storage S interface tests.
*
* \param[in] p_test_suite The test suite to be executed.
*/
void register_testsuite_s_psa_ps_interface(struct test_suite_t *p_test_suite);
/**
* \brief Register testsuite for the sst reliability tests.
*
* \param[in] p_test_suite The test suite to be executed.
*/
void register_testsuite_s_psa_ps_reliability(struct test_suite_t *p_test_suite);
#ifdef SST_TEST_NV_COUNTERS
/**
* \brief Register testsuite for the sst rollback protection tests.
*
* \param[in] p_test_suite The test suite to be executed.
*/
void register_testsuite_s_rollback_protection(
struct test_suite_t *p_test_suite);
#endif
#ifdef __cplusplus
}
#endif
#endif /* __SST_TESTS_H__ */