modify char to work with older macro

This commit is contained in:
Bugra Onal
2023-01-19 11:39:16 -08:00
parent 8a67626e55
commit 7fdc5cc782
5 changed files with 61 additions and 49 deletions
+3 -2
View File
@@ -299,10 +299,11 @@ class functional(simulation):
self.v_low,
self.v_high)
except ValueError:
error ="FAILED: {0}_{1} value {2} at time {3}n is not a float.".format(dout_port,
error ="FAILED: {0}_{1} value {2} at time {3}n is not a float. Measure: {4}".format(dout_port,
bit,
value,
eo_period)
eo_period,
measure_name)
return (0, error)
self.read_results.append([sp_read_value, dout_port, eo_period, cycle])