initialize max_time to 0.0 if the optional MAXIMUM is missing for RUNTEST commands

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1379 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 16 years ago
parent f4b6109d1c
commit 4134133f78

@ -1,3 +1,8 @@
2008-10-23 Arnim Laeuger <arniml@users.sourceforge.net>
* src/svf/svf_bison.y: initialize max_time to 0.0 if
the optional MAXIMUM is missing for RUNTEST commands
2008-10-22 Arnim Laeuger <arniml@users.sourceforge.net>
* src/tap/cable/generic.c: make calibration loop more tolerant for

@ -332,6 +332,9 @@ runtest_time
runtest_max_time_opt
:
{
priv_data->parser_params.runtest.max_time = 0.0;
}
| MAXIMUM NUMBER SEC
{
priv_data->parser_params.runtest.max_time = $<dvalue>2;

Loading…
Cancel
Save