Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
230df282
Commit
230df282
authored
Apr 23, 2016
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1920 from somdoron/master
problem: Tests are failing on windows
parents
6f1dc64f
0655ed2e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
16 deletions
+34
-16
test_term_endpoint.cpp
tests/test_term_endpoint.cpp
+4
-4
test_unbind_wildcard.cpp
tests/test_unbind_wildcard.cpp
+30
-12
No files found.
tests/test_term_endpoint.cpp
View file @
230df282
...
...
@@ -129,9 +129,9 @@ int main (void)
assert
(
push
);
rc
=
zmq_bind
(
push
,
ep_wc_tcp
);
assert
(
rc
==
0
);
pull
=
zmq_socket
(
ctx
,
ZMQ_PULL
);
assert
(
pull
);
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
pull
=
zmq_socket
(
ctx
,
ZMQ_PULL
);
assert
(
pull
);
rc
=
zmq_bind
(
pull
,
ep_wc_ipc
);
assert
(
rc
==
0
);
#endif
...
...
@@ -178,9 +178,9 @@ int main (void)
assert
(
push
);
rc
=
zmq_bind
(
push
,
ep_wc_tcp
);
assert
(
rc
==
0
);
pull
=
zmq_socket
(
ctx
,
ZMQ_PULL
);
assert
(
pull
);
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
pull
=
zmq_socket
(
ctx
,
ZMQ_PULL
);
assert
(
pull
);
rc
=
zmq_bind
(
pull
,
ep_wc_ipc
);
assert
(
rc
==
0
);
#endif
...
...
tests/test_unbind_wildcard.cpp
View file @
230df282
...
...
@@ -35,19 +35,27 @@ int main (void)
int
rc
=
zmq_bind
(
sb
,
"tcp://*:5555"
);
assert
(
rc
==
0
);
char
e
ndpoint
[
256
];
size_t
endpoint_len
=
sizeof
(
endpoint
);
rc
=
zmq_getsockopt
(
sb
,
ZMQ_LAST_ENDPOINT
,
e
ndpoint
,
&
endpoint_len
);
char
bindE
ndpoint
[
256
];
size_t
endpoint_len
=
sizeof
(
bindEndpoint
);
rc
=
zmq_getsockopt
(
sb
,
ZMQ_LAST_ENDPOINT
,
bindE
ndpoint
,
&
endpoint_len
);
assert
(
rc
==
0
);
rc
=
zmq_connect
(
sc
,
endpoint
);
char
connectEndpoint
[
256
];
#ifdef ZMQ_HAVE_WINDOWS
strcpy
(
connectEndpoint
,
"tcp://127.0.0.1:5555"
);
#else
strcpy
(
connectEndpoint
,
bindEndpoint
);
#endif
rc
=
zmq_connect
(
sc
,
connectEndpoint
);
assert
(
rc
==
0
);
bounce
(
sb
,
sc
);
rc
=
zmq_disconnect
(
sc
,
e
ndpoint
);
rc
=
zmq_disconnect
(
sc
,
connectE
ndpoint
);
assert
(
rc
==
0
);
rc
=
zmq_unbind
(
sb
,
e
ndpoint
);
rc
=
zmq_unbind
(
sb
,
bindE
ndpoint
);
assert
(
rc
==
0
);
rc
=
zmq_close
(
sc
);
...
...
@@ -69,19 +77,28 @@ int main (void)
rc
=
zmq_bind
(
sb
,
"tcp://*:5556"
);
assert
(
rc
==
0
);
endpoint_len
=
sizeof
(
e
ndpoint
);
memset
(
e
ndpoint
,
0
,
endpoint_len
);
rc
=
zmq_getsockopt
(
sb
,
ZMQ_LAST_ENDPOINT
,
e
ndpoint
,
&
endpoint_len
);
endpoint_len
=
sizeof
(
bindE
ndpoint
);
memset
(
bindE
ndpoint
,
0
,
endpoint_len
);
rc
=
zmq_getsockopt
(
sb
,
ZMQ_LAST_ENDPOINT
,
bindE
ndpoint
,
&
endpoint_len
);
assert
(
rc
==
0
);
rc
=
zmq_connect
(
sc
,
endpoint
);
#ifdef ZMQ_HAVE_WINDOWS
if
(
ipv6
)
strcpy
(
connectEndpoint
,
"tcp://[::1]:5556"
);
else
strcpy
(
connectEndpoint
,
"tcp://127.0.0.1:5556"
);
#else
strcpy
(
connectEndpoint
,
bindEndpoint
);
#endif
rc
=
zmq_connect
(
sc
,
connectEndpoint
);
assert
(
rc
==
0
);
bounce
(
sb
,
sc
);
rc
=
zmq_disconnect
(
sc
,
e
ndpoint
);
rc
=
zmq_disconnect
(
sc
,
connectE
ndpoint
);
assert
(
rc
==
0
);
rc
=
zmq_unbind
(
sb
,
e
ndpoint
);
rc
=
zmq_unbind
(
sb
,
bindE
ndpoint
);
assert
(
rc
==
0
);
rc
=
zmq_close
(
sc
);
...
...
@@ -98,6 +115,7 @@ int main (void)
rc
=
zmq_bind
(
sb
,
"tcp://127.0.0.1:*"
);
assert
(
rc
==
0
);
char
endpoint
[
256
];
endpoint_len
=
sizeof
(
endpoint
);
memset
(
endpoint
,
0
,
endpoint_len
);
rc
=
zmq_getsockopt
(
sb
,
ZMQ_LAST_ENDPOINT
,
endpoint
,
&
endpoint_len
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment