From 2a871292804cefa399a70fb74215a704122c8cd3 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 25 Sep 2021 18:53:23 +0100 Subject: [PATCH] whoops missed one function which should be a yield (of nothing) --- src/soc/simple/test/test_runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/soc/simple/test/test_runner.py b/src/soc/simple/test/test_runner.py index ee880352..223d9478 100644 --- a/src/soc/simple/test/test_runner.py +++ b/src/soc/simple/test/test_runner.py @@ -134,6 +134,8 @@ class SimRunner(StateRunner): def prepare_for_test(self, test): self.test = test + if False: + yield def run_test(self, instructions, gen, insncode): """run_sim_state - runs an ISACaller simulation -- 2.30.2