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
dd038ae3
Commit
dd038ae3
authored
Apr 23, 2016
by
Doron Somech
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1918 from hitstergtd/hitstergtd-testxpubmanual-win
Problem: XPUB test broken on Windows since #1569
parents
4ae62dfc
ff028621
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
test_xpub_manual.cpp
tests/test_xpub_manual.cpp
+8
-4
No files found.
tests/test_xpub_manual.cpp
View file @
dd038ae3
...
...
@@ -228,10 +228,10 @@ int test_xpub_proxy_unsubscribe_on_disconnect()
return
0
;
}
int
test_missing_subscriptions
()
int
test_missing_subscriptions
(
const
char
*
frontend
,
const
char
*
backend
)
{
const
char
*
frontend
=
"ipc://frontend"
;
const
char
*
backend
=
"ipc://backend"
;
assert
(
!
frontend
&&
!
backend
)
;
const
char
*
topic1
=
"1"
;
const
char
*
topic2
=
"2"
;
const
char
*
payload
=
"X"
;
...
...
@@ -349,7 +349,11 @@ int main(void)
setup_test_environment
();
test_basic
();
test_xpub_proxy_unsubscribe_on_disconnect
();
test_missing_subscriptions
();
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
test_missing_subscriptions
(
"ipc://frontend"
,
"ipc://backend"
);
#endif
test_missing_subscriptions
(
"tcp://127.0.0.1:5560"
,
"tcp://127.0.0.1:5561"
);
return
0
;
}
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