summaryrefslogtreecommitdiffabout
path: root/test
Unidiff
Diffstat (limited to 'test') (more/less context) (ignore whitespace changes)
-rw-r--r--test/idiscover.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/idiscover.cc b/test/idiscover.cc
index 2abedc9..05cbcae 100644
--- a/test/idiscover.cc
+++ b/test/idiscover.cc
@@ -27,23 +27,24 @@ ostream& operator<<(ostream& o,const opkele::xrd::service_t s) {
27 27
28int main(int argc,char **argv) { 28int main(int argc,char **argv) {
29 try { 29 try {
30 if(argc<2) 30 if(argc<2)
31 throw opkele::exception(OPKELE_CP_ "Please, give me something to resolve"); 31 throw opkele::exception(OPKELE_CP_ "Please, give me something to resolve");
32 for(int a=1;a<argc;++a) { 32 for(int a=1;a<argc;++a) {
33 opkele::idiscovery_t discovery(argv[a]); 33 opkele::idiscovery_t discovery(argv[a]);
34 clog 34 clog
35 << "===============================================================" << endl 35 << "===============================================================" << endl
36 << "User-supplied ID: " << argv[a] << endl 36 << "User-supplied ID: " << argv[a] << endl
37 << "Normalized ID: " << discovery.normalized_id << endl 37 << "Normalized ID: " << discovery.normalized_id << endl
38 << "Canonicalized ID: " << discovery.canonicalized_id << endl 38 << "Canonicalized ID: " << discovery.canonicalized_id << endl
39 << "The identity is " << (discovery.xri_identity?"":"not ") << "an i-name" << endl
39 << endl 40 << endl
40 << "CanonicalID: " << discovery.xrd.canonical_ids << endl 41 << "CanonicalID: " << discovery.xrd.canonical_ids << endl
41 << "LocalID: " << discovery.xrd.local_ids << endl 42 << "LocalID: " << discovery.xrd.local_ids << endl
42 << "Services: " << discovery.xrd.services << endl; 43 << "Services: " << discovery.xrd.services << endl;
43 } 44 }
44 }catch(exception& e) { 45 }catch(exception& e) {
45 cerr << "oops: " << e.what() << endl; 46 cerr << "oops: " << e.what() << endl;
46 _exit(1); 47 _exit(1);
47 } 48 }
48 _exit(0); 49 _exit(0);
49} 50}