Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
b42c1974
Commit
b42c1974
authored
Jun 25, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include CAF config header in all unit tests first
parent
f2fb9e71
Changes
29
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
58 additions
and
2 deletions
+58
-2
libcaf_core/test/actor_lifetime.cpp
libcaf_core/test/actor_lifetime.cpp
+2
-0
libcaf_core/test/actor_pool.cpp
libcaf_core/test/actor_pool.cpp
+2
-0
libcaf_core/test/atom.cpp
libcaf_core/test/atom.cpp
+2
-0
libcaf_core/test/constructor_attach.cpp
libcaf_core/test/constructor_attach.cpp
+2
-0
libcaf_core/test/custom_exception_handler.cpp
libcaf_core/test/custom_exception_handler.cpp
+2
-0
libcaf_core/test/dynamic_spawn.cpp
libcaf_core/test/dynamic_spawn.cpp
+2
-0
libcaf_core/test/either.cpp
libcaf_core/test/either.cpp
+2
-0
libcaf_core/test/extract.cpp
libcaf_core/test/extract.cpp
+2
-0
libcaf_core/test/intrusive_ptr.cpp
libcaf_core/test/intrusive_ptr.cpp
+2
-0
libcaf_core/test/limited_vector.cpp
libcaf_core/test/limited_vector.cpp
+2
-0
libcaf_core/test/local_group.cpp
libcaf_core/test/local_group.cpp
+2
-0
libcaf_core/test/message_lifetime.cpp
libcaf_core/test/message_lifetime.cpp
+2
-0
libcaf_core/test/metaprogramming.cpp
libcaf_core/test/metaprogramming.cpp
+2
-0
libcaf_core/test/optional.cpp
libcaf_core/test/optional.cpp
+2
-0
libcaf_core/test/or_else.cpp
libcaf_core/test/or_else.cpp
+2
-0
libcaf_core/test/ripemd_160.cpp
libcaf_core/test/ripemd_160.cpp
+2
-0
libcaf_core/test/serial_reply.cpp
libcaf_core/test/serial_reply.cpp
+2
-0
libcaf_core/test/serialization.cpp
libcaf_core/test/serialization.cpp
+2
-2
libcaf_core/test/shutdown.cpp
libcaf_core/test/shutdown.cpp
+2
-0
libcaf_core/test/simple_reply_response.cpp
libcaf_core/test/simple_reply_response.cpp
+2
-0
libcaf_core/test/sync_send.cpp
libcaf_core/test/sync_send.cpp
+2
-0
libcaf_core/test/sync_timeout.cpp
libcaf_core/test/sync_timeout.cpp
+2
-0
libcaf_core/test/variant.cpp
libcaf_core/test/variant.cpp
+2
-0
libcaf_io/test/dynamic_broker.cpp
libcaf_io/test/dynamic_broker.cpp
+2
-0
libcaf_io/test/remote_actor.cpp
libcaf_io/test/remote_actor.cpp
+2
-0
libcaf_io/test/typed_broker.cpp
libcaf_io/test/typed_broker.cpp
+2
-0
libcaf_io/test/typed_remote_actor.cpp
libcaf_io/test/typed_remote_actor.cpp
+2
-0
libcaf_io/test/uniform_type.cpp
libcaf_io/test/uniform_type.cpp
+2
-0
libcaf_io/test/unpublish.cpp
libcaf_io/test/unpublish.cpp
+2
-0
No files found.
libcaf_core/test/actor_lifetime.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE actor_lifetime
#define CAF_SUITE actor_lifetime
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/actor_pool.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE actor_pool
#define CAF_SUITE actor_pool
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/atom.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE atom
#define CAF_SUITE atom
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/constructor_attach.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE constructor_attach
#define CAF_SUITE constructor_attach
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/custom_exception_handler.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE custome_exception_handler
#define CAF_SUITE custome_exception_handler
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/dynamic_spawn.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE dynamic_spawn
#define CAF_SUITE dynamic_spawn
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/either.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE either
#define CAF_SUITE either
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/extract.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE extract
#define CAF_SUITE extract
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/intrusive_ptr.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE intrusive_ptr
#define CAF_SUITE intrusive_ptr
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/limited_vector.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE limited_vector
#define CAF_SUITE limited_vector
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/local_group.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE local_group
#define CAF_SUITE local_group
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/message_lifetime.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE message_lifetime
#define CAF_SUITE message_lifetime
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/metaprogramming.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE metaprogramming
#define CAF_SUITE metaprogramming
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/optional.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE optional
#define CAF_SUITE optional
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/or_else.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE or_else
#define CAF_SUITE or_else
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/ripemd_160.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE ripemd_160
#define CAF_SUITE ripemd_160
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/serial_reply.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE serial_reply
#define CAF_SUITE serial_reply
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/serialization.cpp
View file @
b42c1974
...
@@ -17,11 +17,11 @@
...
@@ -17,11 +17,11 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE serialization
#define CAF_SUITE serialization
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
#include "caf/config.hpp"
#include <new>
#include <new>
#include <set>
#include <set>
#include <list>
#include <list>
...
...
libcaf_core/test/shutdown.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE shutdown
#define CAF_SUITE shutdown
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/simple_reply_response.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE simple_reply_response
#define CAF_SUITE simple_reply_response
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/sync_send.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE sync_send
#define CAF_SUITE sync_send
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/sync_timeout.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE sync_timeout
#define CAF_SUITE sync_timeout
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_core/test/variant.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE variant
#define CAF_SUITE variant
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_io/test/dynamic_broker.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE io_dynamic_broker
#define CAF_SUITE io_dynamic_broker
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_io/test/remote_actor.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE io_dynamic_remote_actor
#define CAF_SUITE io_dynamic_remote_actor
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_io/test/typed_broker.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE io_typed_broker
#define CAF_SUITE io_typed_broker
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_io/test/typed_remote_actor.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE io_typed_remote_actor
#define CAF_SUITE io_typed_remote_actor
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_io/test/uniform_type.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE uniform_type
#define CAF_SUITE uniform_type
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
libcaf_io/test/unpublish.cpp
View file @
b42c1974
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE io_unpublish
#define CAF_SUITE io_unpublish
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test.hpp"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment