From 7dbe46c93977c69c2ef868b9611a5fc4caf0e854 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Tue, 14 Jun 2016 15:31:29 +0200 Subject: [PATCH] display some debugging info while converting --- svf2xsvf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/svf2xsvf.py b/svf2xsvf.py index 91ca37e..1ce9551 100755 --- a/svf2xsvf.py +++ b/svf2xsvf.py @@ -610,8 +610,8 @@ try: nextTok() if tokVal != ';': raise ParseError( tokLn, tokVal, "Expecting ';' after RUNTEST ....") - # print( "run_count=", run_count, "min_time=", min_time, - # "max_time=", max_time, "run_state=", State[run_state], "end_state=", State[end_state] ) + print( "run_count=", run_count, "min_time=", min_time, + "max_time=", max_time, "run_state=", run_state, "end_state=", end_state ) writeRUNTEST( output, run_state, end_state, run_count, min_time, saveTok ) elif tokVal == 'LCOUNT': -- 2.20.1