X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=test%2Fhello.cpp;h=b9e1489f80cca11166f64cbdcefd87a5aa9ca7f8;hp=80bfec6814a687031f121cf194118d78b8387c6b;hb=fb3345ada7ea94225b78994fd50e3de693a2a3d5;hpb=b604df5f671b5e7abfd37570d76927a6ebd45f98 diff --git a/test/hello.cpp b/test/hello.cpp index 80bfec6..b9e1489 100644 --- a/test/hello.cpp +++ b/test/hello.cpp @@ -118,7 +118,7 @@ class test_hello : public TestFixture // wait till server is up sleep(1); socket_client_connection sc("./socket"); - command_client cc(sc); + command_client cc(&sc); } } } @@ -164,7 +164,7 @@ class test_hello : public TestFixture try { - command_client cc(sc); + command_client cc(&sc); } catch(t2n_version_mismatch &e) { errormsg=e.what(); } @@ -221,7 +221,7 @@ class test_hello : public TestFixture try { - command_client cc(sc); + command_client cc(&sc); } catch(t2n_version_mismatch &e) { errormsg=e.what(); } @@ -277,7 +277,7 @@ class test_hello : public TestFixture try { - command_client cc(sc); + command_client cc(&sc); } catch(t2n_version_mismatch &e) { errormsg=e.what(); } @@ -342,7 +342,7 @@ class test_hello : public TestFixture try { - command_client cc(sc); + command_client cc(&sc); } catch(t2n_version_mismatch &e) { errormsg=e.what(); } @@ -396,7 +396,7 @@ class test_hello : public TestFixture try { - command_client cc(sc); + command_client cc(&sc); } catch(t2n_version_mismatch &e) { errormsg=e.what(); } @@ -450,7 +450,7 @@ class test_hello : public TestFixture try { - command_client cc(sc); + command_client cc(&sc); } catch(t2n_version_mismatch &e) { errormsg=e.what(); }