forked from quickfix/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
76 lines (58 loc) · 1.69 KB
/
Copy pathtesting.html
File metadata and controls
76 lines (58 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<title>Testing QuickFIX</title>
</head>
<body>
<div class='header'>
<div class='headertitle'>
Testing QuickFIX
</div>
</div>
<div class='contents'>
<p>The development of QuickFIX has been driven by a suite of
functional acceptance tests and unit tests.</p>
<hr/>
<h1>Windows</hq>
<h2>Unit Tests</h2>
<p>From the <b>test</b> directory:</p>
<pre class='fragment'>
runut release [port]
</pre>
<p>The port is used to test socket functionality. If you built
QuickFIX with one of its supporting databases, you will need to
update <i>cfg/ut.cfg</i> to reflect your database settings.</p>
<h2>Acceptance Tests</h2>
<p>From the <b>test</b> directory:</p>
<pre class='fragment'>
runat release [port]
</pre>
<pre class='fragment'>
runat_threaded release [port]
</pre>
<p>The port is used to listen for connections on a socket
server.</p>
<br/><hr/>
<h1>Linux / Solaris / FreeBSD / Mac OS X</h1>
<h2>Unit Tests</h2>
<p>From the <b>test</b> directory:</p>
<pre class='fragment'>
./runut.sh [port]
</pre>
<p>The port is used to test socket functionality. If you built
QuickFIX with one of its supporting databases, you will need to
update <i>cfg/ut.cfg</i> to reflect your database settings.</p>
<h2>Acceptance Tests</h2>
<p>From the <b>test</b> directory:</p>
<pre class='fragment'>
./runat.sh [port]
</pre>
<pre class='fragment'>
./runat_threaded.sh [port]
</pre>
<p>The port is used to listen for connections on a socket
server.</p>
</div>
</body>
</html>