You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
821 B

package run_base_pkg is
signal runner : runner_sync_t := (phase => test_runner_entry,
locks => ((false, false),
(false, false),
(false, false)),
exit_without_errors => false,
exit_simulation => false);
shared variable runner_trace_logger : logger_t;
procedure runner_init;
impure function get_phase
return runner_phase_t;
procedure set_test_case_name (
constant index : in positive;
constant new_name : in string);
impure function get_test_case_name (
constant index : positive)
return string;
procedure set_num_of_test_cases (
constant new_value : in integer);
end package;