Tidy up test sources:

Test support classes are moved to beast/extras/test.
This commit is contained in:
Vinnie Falco
2016-05-07 07:08:21 -04:00
parent 24612eba4c
commit 036c3098f3
16 changed files with 173 additions and 151 deletions

View File

@@ -19,8 +19,8 @@
#include "http_async_server.hpp"
#include "http_sync_server.hpp"
#include "../test/sig_wait.hpp"
#include <beast/test/sig_wait.hpp>
#include <boost/program_options.hpp>
#include <iostream>
@@ -72,5 +72,5 @@ int main(int ac, char const* av[])
http_sync_server server(ep, root);
else
http_async_server server(ep, threads, root);
sig_wait();
beast::test::sig_wait();
}