blob: 84721806d239dc785d4cc219c207e7c3fa90c6fe [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# hardware entropy complex (entropy_src, csrng, edn) test utilities.
sw_lib_testing_entropy_testutils = declare_dependency(
link_with: static_library(
'sw_lib_testing_entropy_testutils',
sources: [
hw_ip_edn_reg_h,
'entropy_testutils.c'
],
dependencies: [
top_earlgrey,
sw_lib_mmio,
sw_lib_dif_entropy_src,
sw_lib_dif_csrng,
top_earlgrey,
],
),
)
# Random number generator.
sw_lib_testing_rand_testutils = declare_dependency(
link_with: static_library(
'sw_lib_testing_rand_testutils',
sources: ['rand_testutils.c'],
)
)
subdir('test_framework')