X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=host%2Fnessie_check.rb;h=3af1dfa3dbb3b99a6e023d57ae3463db7cd2be66;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hp=d2ed46ad43c6d68fd258d487b0cd15bd494fdc03;hpb=701cee0d98aab48dd3192c8cc7c77eb42581bc56;p=avr-crypto-lib.git diff --git a/host/nessie_check.rb b/host/nessie_check.rb index d2ed46a..3af1dfa 100644 --- a/host/nessie_check.rb +++ b/host/nessie_check.rb @@ -2,7 +2,7 @@ # nessie_check.rb =begin This file is part of the AVR-Crypto-Lib. - Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,6 +18,8 @@ along with this program. If not, see . =end +$debug = true + def skip_header(file) begin l = file.gets().strip @@ -89,8 +91,8 @@ def compare(fname1, fname2) end if(a!=b and a!=nil and b!=nil) $error += 1 -# puts("a key: "+a[0]+" value: "+a[1]) -# puts("b key: "+b[0]+" value: "+b[1]) + puts("a key: "+a[0]+" value: "+a[1]) if $debug + puts("b key: "+b[0]+" value: "+b[1]) if $debug end end until a==nil or b==nil end