[Quickfix-developers] ruby issues in fedora core 1
Brought to you by:
orenmnero
From: brian <br...@du...> - 2004-01-09 09:55:56
|
hi, after running into some problems with the acceptance tests in fc1, i tracked the problems to some depreciated syntax in ruby (v 1.8.0 in fc1)... below are the diff's, i was only able to test in rh8.0 (which worked)... brian diff -r src/quickfix/test/Reflector.rb cvsquickfix/quickfix/test/Reflector.rb 66c66 < elsif (/^[IEie]\d{1},/ === line) then --- > elsif (/^[IEie]\d{1},/ === line) != nil then 162c162 < exp = Regexp.compile( "<TIME[" + op.chr + "]" + num + ">" ) --- > exp = "<TIME[" + op.chr + "]" + num + ">" diff -r src/quickfix/test/Runner.rb cvsquickfix/quickfix/test/Runner.rb 151c151 < sleep(0.1) --- > sleep(.1) |