| // Copyright lowRISC contributors. | |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| #include "sw/device/lib/runtime/log.h" | |
| #include "sw/device/lib/testing/test_framework/ottf.h" | |
| const test_config_t kTestConfig = { | |
| .can_clobber_uart = false, | |
| .enable_concurrency = false, | |
| }; | |
| bool test_main(void) { | |
| LOG_INFO("Running on-device test on bare-metal using the OTTF."); | |
| return true; | |
| } |