From bc1acef355d35d4c1d20471eda7d73c18991a83b Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Sat, 11 Apr 2015 17:03:05 -0600 Subject: [PATCH] test/pdq2: don't write vcd --- artiq/test/pdq2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/test/pdq2.py b/artiq/test/pdq2.py index ddbd824a7..38decb43a 100644 --- a/artiq/test/pdq2.py +++ b/artiq/test/pdq2.py @@ -47,7 +47,7 @@ class TestPdq2(unittest.TestCase): buf = self.test_cmd_program() tb = Pdq2Sim(buf) tb.ctrl_pads.trigger.reset = 0 - run_simulation(tb, vcd_name="pdq2.vcd", ncycles=len(buf) + 250) + run_simulation(tb, ncycles=len(buf) + 250) delays = 7, 10, 30 y = list(zip(*tb.outputs[len(buf) + 130:])) y = list(zip(*(yi[di:] for yi, di in zip(y, delays))))