blob: 41f5b02507fe1b322201a52bd7e5b2ae9d3c9866 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
class csrng_smoke_test extends csrng_base_test;
`uvm_component_utils(csrng_smoke_test)
`uvm_component_new
function void configure_env();
super.configure_env();
cfg.efuse_sw_app_enable_pct = 100;
cfg.sw_app_enable_pct = 100;
`DV_CHECK_RANDOMIZE_FATAL(cfg)
`uvm_info(`gfn, $sformatf("%s", cfg.convert2string()), UVM_LOW)
endfunction
endclass : csrng_smoke_test