Commit 7952c584 authored by evoskuil's avatar evoskuil

Problem: xpub test has broken style (missing whitespace).

parent 1dd9cac2
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
int main (void) int main (void)
{ {
setup_test_environment(); setup_test_environment ();
void *ctx = zmq_ctx_new (); void *ctx = zmq_ctx_new ();
assert (ctx); assert (ctx);
...@@ -42,15 +42,15 @@ int main (void) ...@@ -42,15 +42,15 @@ int main (void)
assert (rc == 0); assert (rc == 0);
// set pub socket options // set pub socket options
rc = zmq_setsockopt(pub, ZMQ_XPUB_WELCOME_MSG, "W", 1); rc = zmq_setsockopt (pub, ZMQ_XPUB_WELCOME_MSG, "W", 1);
assert (rc == 0); assert (rc == 0);
// Create a subscriber // Create a subscriber
void *sub = zmq_socket (ctx, ZMQ_SUB); void *sub = zmq_socket (ctx, ZMQ_SUB);
// Subscribe to the welcome message // Subscribe to the welcome message
rc = zmq_setsockopt(sub, ZMQ_SUBSCRIBE, "W", 1); rc = zmq_setsockopt (sub, ZMQ_SUBSCRIBE, "W", 1);
assert(rc == 0); assert (rc == 0);
assert (sub); assert (sub);
rc = zmq_connect (sub, "inproc://soname"); rc = zmq_connect (sub, "inproc://soname");
...@@ -60,14 +60,14 @@ int main (void) ...@@ -60,14 +60,14 @@ int main (void)
// Receive the welcome subscription // Receive the welcome subscription
rc = zmq_recv(pub, buffer, 2, 0); rc = zmq_recv(pub, buffer, 2, 0);
assert(rc == 2); assert (rc == 2);
assert(buffer[0] == 1); assert (buffer [0] == 1);
assert(buffer[1] == 'W'); assert (buffer [1] == 'W');
// Receive the welcome message // Receive the welcome message
rc = zmq_recv(sub, buffer, 1, 0); rc = zmq_recv (sub, buffer, 1, 0);
assert(rc == 1); assert (rc == 1);
assert(buffer[0] == 'W'); assert (buffer [0] == 'W');
// Clean up. // Clean up.
rc = zmq_close (pub); rc = zmq_close (pub);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment