mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-14 01:08:43 +00:00
This also changes the test Makefile to run `.check.py` files after running the corresponding `.sby` file to allow more precise testing of the keep going feature.
19 lines
717 B
Python
19 lines
717 B
Python
from check_output import *
|
|
|
|
task = "keepgoing_same_step"
|
|
src = "keepgoing_same_step.sv"
|
|
|
|
assert_a = line_ref(task, src, "assert(a)")
|
|
assert_not_a = line_ref(task, src, "assert(!a)")
|
|
assert_0 = line_ref(task, src, "assert(0)")
|
|
|
|
log = open(task + "/logfile.txt").read()
|
|
log_per_trace = log.split("Writing trace to VCD file")[:-1]
|
|
|
|
assert len(log_per_trace) == 2
|
|
|
|
assert re.search(r"Assert failed in test: %s \(.*\)$" % assert_a, log, re.M)
|
|
assert re.search(r"Assert failed in test: %s \(.*\)$" % assert_not_a, log, re.M)
|
|
assert re.search(r"Assert failed in test: %s \(.*\)$" % assert_0, log_per_trace[0], re.M)
|
|
assert re.search(r"Assert failed in test: %s \(.*\) \[failed before\]$" % assert_0, log_per_trace[1], re.M)
|