@@ -330,8 +330,8 @@ void trio (flux_t *h)
330330 rmsg = recvmsg_timeout (ctx [0 ], 5 );
331331 ok (rmsg != NULL ,
332332 "%s: request was received by overlay" , ctx [0 ]-> name );
333- ok (!overlay_msg_is_local (rmsg ),
334- "%s: overlay_msg_is_local fails on parent from child" ,
333+ ok (!flux_msg_is_local (rmsg ),
334+ "%s: flux_msg_is_local fails on parent from child" ,
335335 ctx [1 ]-> name );
336336 ok (flux_msg_get_topic (rmsg , & topic ) == 0 && !strcmp (topic , "meep" ),
337337 "%s: received message has expected topic" , ctx [0 ]-> name );
@@ -354,8 +354,8 @@ void trio (flux_t *h)
354354 rmsg = recvmsg_timeout (ctx [1 ], 5 );
355355 ok (rmsg != NULL ,
356356 "%s: request was received by overlay" , ctx [1 ]-> name );
357- ok (!overlay_msg_is_local (rmsg ),
358- "%s: overlay_msg_is_local fails on child from parent" ,
357+ ok (!flux_msg_is_local (rmsg ),
358+ "%s: flux_msg_is_local fails on child from parent" ,
359359 ctx [1 ]-> name );
360360 ok (flux_msg_get_topic (rmsg , & topic ) == 0 && !strcmp (topic , "errr" ),
361361 "%s: request has expected topic" , ctx [1 ]-> name );
@@ -376,8 +376,8 @@ void trio (flux_t *h)
376376 rmsg = recvmsg_timeout (ctx [0 ], 5 );
377377 ok (rmsg != NULL ,
378378 "%s: response was received by overlay" , ctx [0 ]-> name );
379- ok (!overlay_msg_is_local (rmsg ),
380- "%s: overlay_msg_is_local returns false for response from child" );
379+ ok (!flux_msg_is_local (rmsg ),
380+ "%s: flux_msg_is_local returns false for response from child" );
381381 ok (flux_msg_get_topic (rmsg , & topic ) == 0 && !strcmp (topic , "m000" ),
382382 "%s: received message has expected topic" , ctx [0 ]-> name );
383383 ok (flux_msg_route_count (rmsg ) == 0 ,
@@ -396,8 +396,8 @@ void trio (flux_t *h)
396396 "%s: event was received by overlay" , ctx [0 ]-> name );
397397 ok (flux_msg_get_topic (rmsg , & topic ) == 0 && !strcmp (topic , "eeek" ),
398398 "%s: received message has expected topic" , ctx [0 ]-> name );
399- ok (!overlay_msg_is_local (rmsg ),
400- "%s: overlay_msg_is_local returns false for event from child" );
399+ ok (!flux_msg_is_local (rmsg ),
400+ "%s: flux_msg_is_local returns false for event from child" );
401401
402402 /* Response 0->1
403403 */
@@ -664,8 +664,8 @@ void wrongness (flux_t *h)
664664 ok (overlay_bind (ov , "ipc://@foobar" ) < 0 && errno == EINVAL ,
665665 "overlay_bind fails if called before rank is known" );
666666
667- ok (!overlay_msg_is_local (NULL ),
668- "overlay_msg_is_local (NULL) returns false" );
667+ ok (!flux_msg_is_local (NULL ),
668+ "flux_msg_is_local (NULL) returns false" );
669669
670670 overlay_destroy (ov );
671671 attr_destroy (attrs );
0 commit comments