Thread: [Quickfix-developers] Unit testing failing on Windows
Brought to you by:
orenmnero
|
From: matt.hocker <mat...@ya...> - 2007-03-13 20:05:35
|
I have just built QuickFix 1.12.4 on Windows using .NET and MS SQL server. I
have double-checked connectivity to the database and it is working both via
OSQL and from ODBC. The build went fine but I am having problems with the
unit test scripts - I am getting an error that isn't very helpful.
Could someone look at this error output and give me some guidance as to what
could be the issue? Many thanks.
C:\Documents and Settings\Administrator\My Documents\Visual Studio
2005\Projects
\quickfix-1.12.4\quickfix\test>runut debug 4471
C:\Documents and Settings\Administrator\My Documents\Visual Studio
2005\Projects
\quickfix-1.12.4\quickfix\test>echo off
<ut>
<output>
................................................................................
................................FFFF............................................
......
</output>
<results total="166" failures="4">
<failure line= "0" file= "unknown">
<test>
<![CDATA[ class CPPTest::Test<class FIX::MessageStore> *]]>
</test>
<text>
<![CDATA[ assert(no futher information available)]]>
</text>
</failure>
<failure line= "0" file= "unknown">
<test>
<![CDATA[ class CPPTest::Test<class FIX::MessageStore> *]]>
</test>
<text>
<![CDATA[ assert(no futher information available)]]>
</text>
</failure>
<failure line= "0" file= "unknown">
<test>
<![CDATA[ class CPPTest::Test<class FIX::MessageStore> *]]>
</test>
<text>
<![CDATA[ assert(no futher information available)]]>
</text>
</failure>
<failure line= "0" file= "unknown">
<test>
<![CDATA[ class CPPTest::Test<class FIX::MessageStore> *]]>
</test>
<text>
<![CDATA[ assert(no futher information available)]]>
</text>
</failure>
</results>
</ut>
--
View this message in context: http://www.nabble.com/Unit-testing-failing-on-Windows-tf3398242.html#a9462239
Sent from the QuickFIX - Dev mailing list archive at Nabble.com.
|
|
From: Oren M. <or...@qu...> - 2007-03-13 21:46:39
|
Have you set up the database in ut.cfg? --oren On Mar 13, 2007, at 3:05 PM, matt.hocker wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > I have just built QuickFix 1.12.4 on Windows using .NET and MS SQL > server. I > have double-checked connectivity to the database and it is working > both via > OSQL and from ODBC. The build went fine but I am having problems > with the > unit test scripts - I am getting an error that isn't very helpful. > > Could someone look at this error output and give me some guidance > as to what > could be the issue? Many thanks. > > C:\Documents and Settings\Administrator\My Documents\Visual Studio > 2005\Projects > \quickfix-1.12.4\quickfix\test>runut debug 4471 > > C:\Documents and Settings\Administrator\My Documents\Visual Studio > 2005\Projects > \quickfix-1.12.4\quickfix\test>echo off > <ut> > <output> > ...................................................................... > .......... > ................................FFFF.................................. > .......... > ...... |
|
From: Matt H. <mat...@ya...> - 2007-03-14 12:22:57
|
Sorry, meant to follow up to the entire list. Yes, I have set up ut.cfg. Here
is the file. FYI, I installed SQL Express 2005 with the named instance of
QUICKFIX.
C:\quickfix\test\cfg>type ut.cfg
[DEFAULT]
#MySQLStoreDatabase=quickfix
#MySQLStoreUser=root
# MySQLStorePassword=[password]
#MySQLStoreHost=localhost
# MySQLStorePort=[port]
#PostgreSQLStoreDatabase=quickfix
#PostgreSQLStoreUser=postgres
# PostgreSQLStorePassword=[password]
#PostgreSQLStoreHost=localhost
# PostgreSQLStorePort=[port]
OdbcStoreUser=sa
# OdbcStorePassword=[password]
OdbcStoreConnectionString=DATABASE=quickfix;DRIVER={SQL
Server};SERVER=(local)\Q
UICKFIX;
--- Oren Miller <or...@qu...> wrote:
> Have you set up the database in ut.cfg?
>
> --oren
>
> On Mar 13, 2007, at 3:05 PM, matt.hocker wrote:
>
> > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/
> > html/index.html
> > QuickFIX Support: http://www.quickfixengine.org/services.html
> >
> >
> > I have just built QuickFix 1.12.4 on Windows using .NET and MS SQL
> > server. I
> > have double-checked connectivity to the database and it is working
> > both via
> > OSQL and from ODBC. The build went fine but I am having problems
> > with the
> > unit test scripts - I am getting an error that isn't very helpful.
> >
> > Could someone look at this error output and give me some guidance
> > as to what
> > could be the issue? Many thanks.
> >
> > C:\Documents and Settings\Administrator\My Documents\Visual Studio
> > 2005\Projects
> > \quickfix-1.12.4\quickfix\test>runut debug 4471
> >
> > C:\Documents and Settings\Administrator\My Documents\Visual Studio
> > 2005\Projects
> > \quickfix-1.12.4\quickfix\test>echo off
> > <ut>
> > <output>
> > ......................................................................
> > ..........
> > ................................FFFF..................................
> > ..........
> > ......
>
>
____________________________________________________________________________________
Never miss an email again!
Yahoo! Toolbar alerts you the instant new Mail arrives.
http://tools.search.yahoo.com/toolbar/features/mail/
|
|
From: Oren M. <or...@qu...> - 2007-03-14 14:03:38
|
What about your password?
--oren
On Mar 14, 2007, at 7:22 AM, Matt Hocker wrote:
> Sorry, meant to follow up to the entire list. Yes, I have set up
> ut.cfg. Here
> is the file. FYI, I installed SQL Express 2005 with the named
> instance of
> QUICKFIX.
>
> C:\quickfix\test\cfg>type ut.cfg
> [DEFAULT]
> #MySQLStoreDatabase=quickfix
> #MySQLStoreUser=root
> # MySQLStorePassword=[password]
> #MySQLStoreHost=localhost
> # MySQLStorePort=[port]
>
> #PostgreSQLStoreDatabase=quickfix
> #PostgreSQLStoreUser=postgres
> # PostgreSQLStorePassword=[password]
> #PostgreSQLStoreHost=localhost
> # PostgreSQLStorePort=[port]
>
> OdbcStoreUser=sa
> # OdbcStorePassword=[password]
> OdbcStoreConnectionString=DATABASE=quickfix;DRIVER={SQL
> Server};SERVER=(local)\Q
> UICKFIX;
|
|
From: Matt H. <mat...@ya...> - 2007-03-15 14:19:47
|
The password is set, I just removed it for this posting.
--- Oren Miller <or...@qu...> wrote:
> What about your password?
>
> --oren
>
> On Mar 14, 2007, at 7:22 AM, Matt Hocker wrote:
>
> > Sorry, meant to follow up to the entire list. Yes, I have set up
> > ut.cfg. Here
> > is the file. FYI, I installed SQL Express 2005 with the named
> > instance of
> > QUICKFIX.
> >
> > C:\quickfix\test\cfg>type ut.cfg
> > [DEFAULT]
> > #MySQLStoreDatabase=quickfix
> > #MySQLStoreUser=root
> > # MySQLStorePassword=[password]
> > #MySQLStoreHost=localhost
> > # MySQLStorePort=[port]
> >
> > #PostgreSQLStoreDatabase=quickfix
> > #PostgreSQLStoreUser=postgres
> > # PostgreSQLStorePassword=[password]
> > #PostgreSQLStoreHost=localhost
> > # PostgreSQLStorePort=[port]
> >
> > OdbcStoreUser=sa
> > # OdbcStorePassword=[password]
> > OdbcStoreConnectionString=DATABASE=quickfix;DRIVER={SQL
> > Server};SERVER=(local)\Q
> > UICKFIX;
>
>
____________________________________________________________________________________
Get your own web address.
Have a HUGE year through Yahoo! Small Business.
http://smallbusiness.yahoo.com/domains/?p=BESTDEAL
|