We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2656dd2 commit eceb59eCopy full SHA for eceb59e
tests/simulation/simulator/vcs/test_simulation_simulator_vcs.py
@@ -221,6 +221,14 @@ def test():
221
if which('vcs'):
222
sim = simulation.Simulator(test_module, sim='vcs')
223
rslt = sim.run()
224
+
225
+ new_rslt = []
226
+ for line in rslt.split('\n'):
227
+ if line.count('LED:') > 0:
228
+ new_rslt.append(line)
229
+ new_rslt.append('')
230
+ rslt = '\n'.join(new_rslt)
231
232
assert(expected_rslt == rslt)
233
234
else:
0 commit comments