Commit d995e27e authored by Dominik Charousset's avatar Dominik Charousset

Fix test suite names

parent 41752506
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* http://www.boost.org/LICENSE_1_0.txt. * * http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/ ******************************************************************************/
#define CAF_SUITE spawn #define CAF_SUITE dynamic_spawn
#include "caf/test/unit_test.hpp" #include "caf/test/unit_test.hpp"
#include <stack> #include <stack>
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* http://www.boost.org/LICENSE_1_0.txt. * * http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/ ******************************************************************************/
#define CAF_SUITE broker #define CAF_SUITE dynamic_broker
#include "caf/test/unit_test.hpp" #include "caf/test/unit_test.hpp"
#include <memory> #include <memory>
...@@ -180,8 +180,8 @@ void run_server(bool spawn_client, const char* bin_path) { ...@@ -180,8 +180,8 @@ void run_server(bool spawn_client, const char* bin_path) {
[&](uint16_t port) { [&](uint16_t port) {
CAF_MESSAGE("server is running on port " << port); CAF_MESSAGE("server is running on port " << port);
if (spawn_client) { if (spawn_client) {
auto child = detail::run_program(self, bin_path, "-n", "-s", "broker", auto child = detail::run_program(self, bin_path, "-n", "-s",
"--", "-c", port); "dynamic_broker", "--", "-c", port);
CAF_MESSAGE("block till child process has finished"); CAF_MESSAGE("block till child process has finished");
child.join(); child.join();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment