Software APIs
empty_test.c
1 // Copyright lowRISC contributors (OpenTitan project).
2 // Licensed under the Apache License, Version 2.0, see LICENSE for details.
3 // SPDX-License-Identifier: Apache-2.0
4 
5 #include <stdbool.h>
6 
8 #include "sw/device/silicon_creator/lib/manifest_def.h"
9 
10 #ifdef EMPTY_TEST_MSG
12 #include "sw/device/silicon_creator/lib/drivers/lifecycle.h"
13 #include "sw/device/silicon_creator/lib/drivers/otp.h"
14 #include "sw/device/silicon_creator/lib/sigverify/spx_verify.h"
15 
16 #include "otp_ctrl_regs.h"
17 #endif
18 
19 OTTF_DEFINE_TEST_CONFIG();
20 
21 bool test_main(void) {
22 #ifdef EMPTY_TEST_MSG
23  LOG_INFO(EMPTY_TEST_MSG);
24 #endif
25  return true;
26 }