6 >>> # Destination name space collision test
8 >>> save_dest 2 a_dest a_prop b_endp
10 >>> save_dest 2 a_dest a_prop b_endp
12 >>> save_dest 2 a_dest a_prop b_endp
15 >>> # Another destination name space collision test
17 >>> save_dest 2 a_dest a_prop b_endp
19 >>> save_dest 2 a_dest a_prop2 b_endp
21 >>> save_dest 2 a_dest a_prop2 b_endp2
24 >>> # Endpoint name space collision test
26 >>> save_endp 2 b_endp b_prop 12
27 >>> save_endp 2 b_endp b_prop 13
30 >>> # Combined destiation and endpoint collision test with lookup
32 >>> save_dest 2 a_dest a_prop b_endp
33 >>> save_dest 2 a_dest a_prop2 b_endp
34 >>> save_dest 2 a_dest a_prop2 b_endp2
35 >>> save_endp 2 b_endp b_prop 12
36 >>> save_endp 2 b_endp b_prop 13
41 >>> # Another combined destiation and endpoint collision test with lookup
43 >>> save_endp 2 b_endp2 b_prop 12
44 >>> save_endp 2 b_endp2 b_prop 13
45 >>> save_endp 2 b_endp2 b_prop 14
51 >>> # Let the exit handler clean up the destiation->endpoint bindings.