X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=test%2Ftimeout.cpp;h=8f67cacd9ae399fb3532e41e2a2e212e6541e0fd;hp=3434c0b44e7dc31b67c2fa4aec16eefcd258fc3e;hb=df94ded3d8958d9baff6baebc8e0ac85244da31d;hpb=307b5e74c506b609d5c407be0943f45255ab5122 diff --git a/test/timeout.cpp b/test/timeout.cpp index 3434c0b..8f67cac 100644 --- a/test/timeout.cpp +++ b/test/timeout.cpp @@ -127,33 +127,18 @@ class testfunc2_cmd : public libt2n::command BOOST_CLASS_EXPORT(testfunc2_cmd) BOOST_CLASS_EXPORT(testfunc2_res) -// this is an evil hack to get access to real_write, don't ever do this in an app!!! -class real_write_connection: public socket_server_connection -{ - public: - void real_write(const std::string& data) - { socket_write(data); } -}; - -// this is an evil hack to get access to real_write, don't ever do this in an app!!! -class real_write_client_connection: public socket_client_connection -{ - public: - void real_write(const std::string& data) - { socket_write(data); } -}; - - class test_timeoutFixture : public KillChildOnShutdownFixture { protected: typedef uint32_t packet_size_indicator; - void send_hello(string hello_string, socket_server* ss, unsigned int conn_id) + // this is an evil hack to get access to real_write, don't ever do this in an app!!! + class real_write_client_connection: public socket_client_connection { - server_connection *sc=ss->get_connection(conn_id); - sc->write(hello_string); - } + public: + void real_write(const std::string& data) + { socket_write(data); } + }; void send_slow_raw_socket(string data, socket_server* ss, unsigned int conn_id) { @@ -171,15 +156,6 @@ protected: usleep(200000); } } - -public: - test_timeoutFixture() - { - } - - ~test_timeoutFixture() - { - } }; BOOST_FIXTURE_TEST_SUITE(test_timeout, test_timeoutFixture)