Преглед изворни кода

build: update bazel common test target (#1124)

Ezekiel Warren пре 1 година
родитељ
комит
1c30113338
65 измењених фајлова са 148 додато и 148 уклоњено
  1. 1 1
      test/common/BUILD.bazel
  2. 5 5
      test/entt/container/dense_map.cpp
  3. 4 4
      test/entt/container/dense_set.cpp
  4. 1 1
      test/entt/core/algorithm.cpp
  5. 5 5
      test/entt/core/any.cpp
  6. 2 2
      test/entt/core/compressed_pair.cpp
  7. 2 2
      test/entt/core/ident.cpp
  8. 1 1
      test/entt/core/iterator.cpp
  9. 5 5
      test/entt/core/memory.cpp
  10. 1 1
      test/entt/core/type_traits.cpp
  11. 2 2
      test/entt/entity/BUILD.bazel
  12. 3 3
      test/entt/entity/component.cpp
  13. 1 1
      test/entt/entity/entity.cpp
  14. 3 3
      test/entt/entity/group.cpp
  15. 1 1
      test/entt/entity/helper.cpp
  16. 6 6
      test/entt/entity/registry.cpp
  17. 2 2
      test/entt/entity/runtime_view.cpp
  18. 6 6
      test/entt/entity/sigh_mixin.cpp
  19. 2 2
      test/entt/entity/snapshot.cpp
  20. 4 4
      test/entt/entity/sparse_set.cpp
  21. 7 7
      test/entt/entity/storage.cpp
  22. 2 2
      test/entt/entity/storage_entity.cpp
  23. 3 3
      test/entt/entity/storage_no_instance.cpp
  24. 3 3
      test/entt/entity/view.cpp
  25. 2 2
      test/entt/graph/adjacency_matrix.cpp
  26. 3 3
      test/entt/graph/flow.cpp
  27. 1 1
      test/entt/locator/locator.cpp
  28. 2 2
      test/entt/meta/BUILD.bazel
  29. 3 3
      test/entt/meta/meta_any.cpp
  30. 3 3
      test/entt/meta/meta_container.cpp
  31. 1 1
      test/entt/meta/meta_context.cpp
  32. 1 1
      test/entt/meta/meta_data.cpp
  33. 1 1
      test/entt/meta/meta_func.cpp
  34. 1 1
      test/entt/meta/meta_pointer.cpp
  35. 1 1
      test/entt/meta/meta_type.cpp
  36. 2 2
      test/entt/meta/meta_utility.cpp
  37. 2 2
      test/entt/poly/poly.cpp
  38. 1 1
      test/entt/process/process.cpp
  39. 1 1
      test/entt/resource/resource.cpp
  40. 2 2
      test/entt/resource/resource_cache.cpp
  41. 1 1
      test/entt/signal/delegate.cpp
  42. 4 4
      test/entt/signal/emitter.cpp
  43. 1 1
      test/entt/signal/sigh.cpp
  44. 2 2
      test/lib/dispatcher/plugin/main.cpp
  45. 2 2
      test/lib/dispatcher/plugin/plugin.cpp
  46. 2 2
      test/lib/dispatcher/shared/lib.cpp
  47. 2 2
      test/lib/dispatcher/shared/main.cpp
  48. 2 2
      test/lib/emitter/plugin/main.cpp
  49. 3 3
      test/lib/emitter/plugin/plugin.cpp
  50. 3 3
      test/lib/emitter/shared/lib.cpp
  51. 2 2
      test/lib/emitter/shared/main.cpp
  52. 1 1
      test/lib/locator/plugin/main.cpp
  53. 1 1
      test/lib/locator/plugin/plugin.cpp
  54. 1 1
      test/lib/locator/plugin/userdata.h
  55. 1 1
      test/lib/locator/shared/lib.cpp
  56. 1 1
      test/lib/locator/shared/main.cpp
  57. 2 2
      test/lib/meta/plugin/plugin.cpp
  58. 2 2
      test/lib/meta/plugin_std/plugin.cpp
  59. 2 2
      test/lib/meta/plugin_std/userdata.h
  60. 3 3
      test/lib/meta/shared/lib.cpp
  61. 3 3
      test/lib/meta/shared/main.cpp
  62. 2 2
      test/lib/registry/plugin/main.cpp
  63. 2 2
      test/lib/registry/plugin/plugin.cpp
  64. 2 2
      test/lib/registry/shared/lib.cpp
  65. 2 2
      test/lib/registry/shared/main.cpp

+ 1 - 1
test/common/BUILD.bazel

@@ -1,5 +1,5 @@
-load("@rules_cc//cc:defs.bzl", "cc_library")
 load("@entt//bazel:copts.bzl", "COPTS")
+load("@rules_cc//cc:defs.bzl", "cc_library")
 
 package(default_visibility = ["//:__subpackages__"])
 

+ 5 - 5
test/entt/container/dense_map.cpp

@@ -9,11 +9,11 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/linter.hpp>
-#include <common/throwing_allocator.hpp>
-#include <common/tracked_memory_resource.hpp>
-#include <common/transparent_equal_to.h>
+#include "common/config.h"
+#include "common/linter.hpp"
+#include "common/throwing_allocator.hpp"
+#include "common/tracked_memory_resource.hpp"
+#include "common/transparent_equal_to.h"
 #include <entt/container/dense_map.hpp>
 #include <entt/core/iterator.hpp>
 #include <entt/core/memory.hpp>

+ 4 - 4
test/entt/container/dense_set.cpp

@@ -9,10 +9,10 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/linter.hpp>
-#include <common/throwing_allocator.hpp>
-#include <common/tracked_memory_resource.hpp>
-#include <common/transparent_equal_to.h>
+#include "common/linter.hpp"
+#include "common/throwing_allocator.hpp"
+#include "common/tracked_memory_resource.hpp"
+#include "common/transparent_equal_to.h"
 #include <entt/container/dense_set.hpp>
 #include <entt/core/memory.hpp>
 #include <entt/core/utility.hpp>

+ 1 - 1
test/entt/core/algorithm.cpp

@@ -1,7 +1,7 @@
 #include <array>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <entt/core/algorithm.hpp>
 
 TEST(Algorithm, StdSort) {

+ 5 - 5
test/entt/core/any.cpp

@@ -7,11 +7,11 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/aggregate.h>
-#include <common/config.h>
-#include <common/linter.hpp>
-#include <common/non_comparable.h>
-#include <common/non_movable.h>
+#include "common/aggregate.h"
+#include "common/config.h"
+#include "common/linter.hpp"
+#include "common/non_comparable.h"
+#include "common/non_movable.h"
 #include <entt/core/any.hpp>
 #include <entt/core/type_info.hpp>
 

+ 2 - 2
test/entt/core/compressed_pair.cpp

@@ -5,8 +5,8 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/empty.h>
-#include <common/non_default_constructible.h>
+#include "common/empty.h"
+#include "common/non_default_constructible.h"
 #include <entt/core/compressed_pair.hpp>
 
 TEST(CompressedPair, Size) {

+ 2 - 2
test/entt/core/ident.cpp

@@ -1,7 +1,7 @@
 #include <type_traits>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/ident.hpp>
 
 TEST(Ident, Uniqueness) {

+ 1 - 1
test/entt/core/iterator.cpp

@@ -2,7 +2,7 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <entt/core/iterator.hpp>
 
 TEST(InputIteratorPointer, Functionalities) {

+ 5 - 5
test/entt/core/memory.cpp

@@ -8,11 +8,11 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/basic_test_allocator.hpp>
-#include <common/config.h>
-#include <common/throwing_allocator.hpp>
-#include <common/throwing_type.hpp>
-#include <common/tracked_memory_resource.hpp>
+#include "common/basic_test_allocator.hpp"
+#include "common/config.h"
+#include "common/throwing_allocator.hpp"
+#include "common/throwing_type.hpp"
+#include "common/tracked_memory_resource.hpp"
 #include <entt/core/memory.hpp>
 
 TEST(ToAddress, Functionalities) {

+ 1 - 1
test/entt/core/type_traits.cpp

@@ -6,7 +6,7 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/non_comparable.h>
+#include "common/non_comparable.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_traits.hpp>
 

+ 2 - 2
test/entt/entity/BUILD.bazel

@@ -1,5 +1,5 @@
-load("@rules_cc//cc:defs.bzl", "cc_test")
 load("@entt//bazel:copts.bzl", "COPTS")
+load("@rules_cc//cc:defs.bzl", "cc_test")
 
 # buildifier: keep sorted
 _TESTS = [
@@ -27,7 +27,7 @@ _TESTS = [
     srcs = ["{}.cpp".format(test)],
     copts = COPTS,
     deps = [
-        "//entt/common",
+        "//common",
         "@entt",
         "@googletest//:gtest",
         "@googletest//:gtest_main",

+ 3 - 3
test/entt/entity/component.cpp

@@ -1,7 +1,7 @@
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/empty.h>
-#include <common/non_movable.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
+#include "common/non_movable.h"
 #include <entt/config/config.h>
 #include <entt/entity/component.hpp>
 

+ 1 - 1
test/entt/entity/entity.cpp

@@ -1,7 +1,7 @@
 #include <cstddef>
 #include <cstdint>
 #include <gtest/gtest.h>
-#include <common/entity.h>
+#include "common/entity.h"
 #include <entt/config/config.h>
 #include <entt/entity/entity.hpp>
 

+ 3 - 3
test/entt/entity/group.cpp

@@ -5,9 +5,9 @@
 #include <tuple>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/config.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/config.h"
+#include "common/empty.h"
 #include <entt/entity/group.hpp>
 #include <entt/entity/registry.hpp>
 

+ 1 - 1
test/entt/entity/helper.cpp

@@ -1,5 +1,5 @@
 #include <gtest/gtest.h>
-#include <common/pointer_stable.h>
+#include "common/pointer_stable.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/entity/component.hpp>
 #include <entt/entity/entity.hpp>

+ 6 - 6
test/entt/entity/registry.cpp

@@ -9,12 +9,12 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/aggregate.h>
-#include <common/config.h>
-#include <common/empty.h>
-#include <common/entity.h>
-#include <common/non_default_constructible.h>
-#include <common/pointer_stable.h>
+#include "common/aggregate.h"
+#include "common/config.h"
+#include "common/empty.h"
+#include "common/entity.h"
+#include "common/non_default_constructible.h"
+#include "common/pointer_stable.h"
 #include <entt/config/config.h>
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_info.hpp>

+ 2 - 2
test/entt/entity/runtime_view.cpp

@@ -2,8 +2,8 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/linter.hpp>
-#include <common/pointer_stable.h>
+#include "common/linter.hpp"
+#include "common/pointer_stable.h"
 #include <entt/entity/entity.hpp>
 #include <entt/entity/registry.hpp>
 #include <entt/entity/runtime_view.hpp>

+ 6 - 6
test/entt/entity/sigh_mixin.cpp

@@ -4,12 +4,12 @@
 #include <type_traits>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/entity.h>
-#include <common/linter.hpp>
-#include <common/non_default_constructible.h>
-#include <common/pointer_stable.h>
-#include <common/throwing_allocator.hpp>
-#include <common/throwing_type.hpp>
+#include "common/entity.h"
+#include "common/linter.hpp"
+#include "common/non_default_constructible.h"
+#include "common/pointer_stable.h"
+#include "common/throwing_allocator.hpp"
+#include "common/throwing_type.hpp"
 #include <entt/core/any.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/entity/component.hpp>

+ 2 - 2
test/entt/entity/snapshot.cpp

@@ -4,8 +4,8 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/empty.h>
+#include "common/config.h"
+#include "common/empty.h"
 #include <entt/core/any.hpp>
 #include <entt/core/hashed_string.hpp>
 #include <entt/entity/entity.hpp>

+ 4 - 4
test/entt/entity/sparse_set.cpp

@@ -6,10 +6,10 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/entity.h>
-#include <common/linter.hpp>
-#include <common/throwing_allocator.hpp>
+#include "common/config.h"
+#include "common/entity.h"
+#include "common/linter.hpp"
+#include "common/throwing_allocator.hpp"
 #include <entt/config/config.h>
 #include <entt/core/any.hpp>
 #include <entt/core/type_info.hpp>

+ 7 - 7
test/entt/entity/storage.cpp

@@ -7,13 +7,13 @@
 #include <unordered_set>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/aggregate.h>
-#include <common/config.h>
-#include <common/linter.hpp>
-#include <common/pointer_stable.h>
-#include <common/throwing_allocator.hpp>
-#include <common/throwing_type.hpp>
-#include <common/tracked_memory_resource.hpp>
+#include "common/aggregate.h"
+#include "common/config.h"
+#include "common/linter.hpp"
+#include "common/pointer_stable.h"
+#include "common/throwing_allocator.hpp"
+#include "common/throwing_type.hpp"
+#include "common/tracked_memory_resource.hpp"
 #include <entt/core/iterator.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/entity/component.hpp>

+ 2 - 2
test/entt/entity/storage_entity.cpp

@@ -7,8 +7,8 @@
 #include <type_traits>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/linter.hpp>
+#include "common/config.h"
+#include "common/linter.hpp"
 #include <entt/core/iterator.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/entity/entity.hpp>

+ 3 - 3
test/entt/entity/storage_no_instance.cpp

@@ -6,9 +6,9 @@
 #include <type_traits>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/empty.h>
-#include <common/linter.hpp>
+#include "common/config.h"
+#include "common/empty.h"
+#include "common/linter.hpp"
 #include <entt/core/iterator.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/entity/entity.hpp>

+ 3 - 3
test/entt/entity/view.cpp

@@ -4,9 +4,9 @@
 #include <tuple>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/empty.h>
-#include <common/pointer_stable.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
+#include "common/pointer_stable.h"
 #include <entt/core/any.hpp>
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_info.hpp>

+ 2 - 2
test/entt/graph/adjacency_matrix.cpp

@@ -2,8 +2,8 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/linter.hpp>
-#include <common/throwing_allocator.hpp>
+#include "common/linter.hpp"
+#include "common/throwing_allocator.hpp"
 #include <entt/graph/adjacency_matrix.hpp>
 
 TEST(AdjacencyMatrix, Resize) {

+ 3 - 3
test/entt/graph/flow.cpp

@@ -3,9 +3,9 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/linter.hpp>
-#include <common/throwing_allocator.hpp>
+#include "common/config.h"
+#include "common/linter.hpp"
+#include "common/throwing_allocator.hpp"
 #include <entt/core/hashed_string.hpp>
 #include <entt/graph/flow.hpp>
 

+ 1 - 1
test/entt/locator/locator.cpp

@@ -1,6 +1,6 @@
 #include <memory>
 #include <gtest/gtest.h>
-#include <common/config.h>
+#include "common/config.h"
 #include <entt/locator/locator.hpp>
 
 struct base_service {

+ 2 - 2
test/entt/meta/BUILD.bazel

@@ -1,5 +1,5 @@
-load("@rules_cc//cc:defs.bzl", "cc_test")
 load("@entt//bazel:copts.bzl", "COPTS")
+load("@rules_cc//cc:defs.bzl", "cc_test")
 
 # buildifier: keep sorted
 _TESTS = [
@@ -26,7 +26,7 @@ _TESTS = [
     srcs = ["{}.cpp".format(test)],
     copts = COPTS,
     deps = [
-        "//entt/common",
+        "//common",
         "@entt",
         "@googletest//:gtest",
         "@googletest//:gtest_main",

+ 3 - 3
test/entt/meta/meta_any.cpp

@@ -4,9 +4,9 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/linter.hpp>
-#include <common/non_comparable.h>
+#include "common/config.h"
+#include "common/linter.hpp"
+#include "common/non_comparable.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/meta/factory.hpp>
 #include <entt/meta/meta.hpp>

+ 3 - 3
test/entt/meta/meta_container.cpp

@@ -6,9 +6,9 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/empty.h>
-#include <common/non_default_constructible.h>
+#include "common/config.h"
+#include "common/empty.h"
+#include "common/non_default_constructible.h"
 #include <entt/container/dense_map.hpp>
 #include <entt/container/dense_set.hpp>
 #include <entt/meta/container.hpp>

+ 1 - 1
test/entt/meta/meta_context.cpp

@@ -3,7 +3,7 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/empty.h>
+#include "common/empty.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/meta/container.hpp>

+ 1 - 1
test/entt/meta/meta_data.cpp

@@ -2,7 +2,7 @@
 #include <string>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
+#include "common/config.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_traits.hpp>
 #include <entt/locator/locator.hpp>

+ 1 - 1
test/entt/meta/meta_func.cpp

@@ -1,7 +1,7 @@
 #include <cstddef>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
+#include "common/config.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/utility.hpp>
 #include <entt/entity/registry.hpp>

+ 1 - 1
test/entt/meta/meta_pointer.cpp

@@ -2,7 +2,7 @@
 #include <type_traits>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
+#include "common/config.h"
 #include <entt/meta/adl_pointer.hpp>
 #include <entt/meta/meta.hpp>
 #include <entt/meta/pointer.hpp>

+ 1 - 1
test/entt/meta/meta_type.cpp

@@ -4,7 +4,7 @@
 #include <utility>
 #include <vector>
 #include <gtest/gtest.h>
-#include <common/config.h>
+#include "common/config.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/core/utility.hpp>

+ 2 - 2
test/entt/meta/meta_utility.cpp

@@ -2,8 +2,8 @@
 #include <iterator>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/empty.h>
+#include "common/config.h"
+#include "common/empty.h"
 #include <entt/core/type_traits.hpp>
 #include <entt/meta/meta.hpp>
 #include <entt/meta/policy.hpp>

+ 2 - 2
test/entt/poly/poly.cpp

@@ -3,8 +3,8 @@
 #include <cstdint>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
-#include <common/linter.hpp>
+#include "common/config.h"
+#include "common/linter.hpp"
 #include <entt/core/type_info.hpp>
 #include <entt/core/type_traits.hpp>
 #include <entt/poly/poly.hpp>

+ 1 - 1
test/entt/process/process.cpp

@@ -1,6 +1,6 @@
 #include <cstdint>
 #include <gtest/gtest.h>
-#include <common/empty.h>
+#include "common/empty.h"
 #include <entt/process/process.hpp>
 
 template<typename Delta>

+ 1 - 1
test/entt/resource/resource.cpp

@@ -1,7 +1,7 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/linter.hpp>
+#include "common/linter.hpp"
 #include <entt/core/type_info.hpp>
 #include <entt/resource/resource.hpp>
 

+ 2 - 2
test/entt/resource/resource_cache.cpp

@@ -3,8 +3,8 @@
 #include <tuple>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/linter.hpp>
-#include <common/throwing_allocator.hpp>
+#include "common/linter.hpp"
+#include "common/throwing_allocator.hpp"
 #include <entt/container/dense_map.hpp>
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/iterator.hpp>

+ 1 - 1
test/entt/signal/delegate.cpp

@@ -1,7 +1,7 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/config.h>
+#include "common/config.h"
 #include <entt/signal/delegate.hpp>
 
 int power_of_two(const int &i) {

+ 4 - 4
test/entt/signal/emitter.cpp

@@ -2,10 +2,10 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/emitter.h>
-#include <common/empty.h>
-#include <common/linter.hpp>
+#include "common/boxed_type.h"
+#include "common/emitter.h"
+#include "common/empty.h"
+#include "common/linter.hpp"
 #include <entt/signal/emitter.hpp>
 
 TEST(Emitter, Move) {

+ 1 - 1
test/entt/signal/sigh.cpp

@@ -1,7 +1,7 @@
 #include <memory>
 #include <utility>
 #include <gtest/gtest.h>
-#include <common/linter.hpp>
+#include "common/linter.hpp"
 #include <entt/signal/sigh.hpp>
 
 struct sigh_listener {

+ 2 - 2
test/lib/dispatcher/plugin/main.cpp

@@ -1,8 +1,8 @@
 #define CR_HOST
 
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/listener.h>
+#include "common/boxed_type.h"
+#include "common/listener.h"
 #include <cr.h>
 #include <entt/signal/dispatcher.hpp>
 

+ 2 - 2
test/lib/dispatcher/plugin/plugin.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <cr.h>
 #include <entt/signal/dispatcher.hpp>
 

+ 2 - 2
test/lib/dispatcher/shared/lib.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/attribute.h>
 #include <entt/signal/dispatcher.hpp>
 

+ 2 - 2
test/lib/dispatcher/shared/main.cpp

@@ -1,6 +1,6 @@
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/listener.h>
+#include "common/boxed_type.h"
+#include "common/listener.h"
 #include <entt/core/attribute.h>
 #include <entt/core/utility.hpp>
 #include <entt/signal/dispatcher.hpp>

+ 2 - 2
test/lib/emitter/plugin/main.cpp

@@ -2,8 +2,8 @@
 
 #include <functional>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/emitter.h>
+#include "common/boxed_type.h"
+#include "common/emitter.h"
 #include <cr.h>
 
 TEST(Lib, Emitter) {

+ 3 - 3
test/lib/emitter/plugin/plugin.cpp

@@ -1,6 +1,6 @@
-#include <common/boxed_type.h>
-#include <common/emitter.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/emitter.h"
+#include "common/empty.h"
 #include <cr.h>
 
 CR_EXPORT int cr_main(cr_plugin *ctx, cr_op operation) {

+ 3 - 3
test/lib/emitter/shared/lib.cpp

@@ -1,6 +1,6 @@
-#include <common/boxed_type.h>
-#include <common/emitter.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/emitter.h"
+#include "common/empty.h"
 #include <entt/core/attribute.h>
 
 ENTT_API void emit(test::emitter &emitter) {

+ 2 - 2
test/lib/emitter/shared/main.cpp

@@ -1,7 +1,7 @@
 #include <functional>
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/emitter.h>
+#include "common/boxed_type.h"
+#include "common/emitter.h"
 #include <entt/core/attribute.h>
 
 ENTT_API void emit(test::emitter &);

+ 1 - 1
test/lib/locator/plugin/main.cpp

@@ -1,7 +1,7 @@
 #define CR_HOST
 
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <cr.h>
 #include <entt/locator/locator.hpp>
 #include "userdata.h"

+ 1 - 1
test/lib/locator/plugin/plugin.cpp

@@ -1,4 +1,4 @@
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <cr.h>
 #include <entt/locator/locator.hpp>
 #include "userdata.h"

+ 1 - 1
test/lib/locator/plugin/userdata.h

@@ -1,7 +1,7 @@
 #ifndef ENTT_LIB_LOCATOR_PLUGIN_USERDATA_H
 #define ENTT_LIB_LOCATOR_PLUGIN_USERDATA_H
 
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <entt/locator/locator.hpp>
 
 struct userdata {

+ 1 - 1
test/lib/locator/shared/lib.cpp

@@ -1,4 +1,4 @@
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <entt/core/attribute.h>
 #include <entt/locator/locator.hpp>
 

+ 1 - 1
test/lib/locator/shared/main.cpp

@@ -1,5 +1,5 @@
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
+#include "common/boxed_type.h"
 #include <entt/core/attribute.h>
 #include <entt/locator/locator.hpp>
 

+ 2 - 2
test/lib/meta/plugin/plugin.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <cr.h>
 #include <entt/core/hashed_string.hpp>
 #include <entt/locator/locator.hpp>

+ 2 - 2
test/lib/meta/plugin_std/plugin.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <cr.h>
 #include <entt/core/hashed_string.hpp>
 #include <entt/locator/locator.hpp>

+ 2 - 2
test/lib/meta/plugin_std/userdata.h

@@ -2,8 +2,8 @@
 #define ENTT_LIB_META_PLUGIN_STD_USERDATA_H
 
 #include <type_traits>
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/hashed_string.hpp>
 #include <entt/core/type_info.hpp>
 #include <entt/meta/context.hpp>

+ 3 - 3
test/lib/meta/shared/lib.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/attribute.h>
 #include <entt/core/hashed_string.hpp>
 #include <entt/locator/locator.hpp>
@@ -19,7 +19,7 @@ ENTT_API void set_up() {
     using namespace entt::literals;
 
     entt::meta<test::boxed_int>()
-        .type("boxed_int"_hs)
+        .type(mboxed_intm_hs)
         .ctor<&create_boxed_int>()
         .data<&test::boxed_int::value>("value"_hs);
 

+ 3 - 3
test/lib/meta/shared/main.cpp

@@ -1,6 +1,6 @@
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/attribute.h>
 #include <entt/core/hashed_string.hpp>
 #include <entt/locator/locator.hpp>
@@ -16,7 +16,7 @@ ENTT_API entt::meta_any wrap_int(int);
 TEST(Lib, Meta) {
     using namespace entt::literals;
 
-    ASSERT_FALSE(entt::resolve("boxed_int"_hs));
+    ASSERT_FALSE(entt::resolve(mboxed_int"_hs));
     ASSERT_FALSE(entt::resolve("empty"_hs));
 
     share(entt::locator<entt::meta_ctx>::handle());

+ 2 - 2
test/lib/registry/plugin/main.cpp

@@ -1,8 +1,8 @@
 #define CR_HOST
 
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <cr.h>
 #include <entt/entity/entity.hpp>
 #include <entt/entity/registry.hpp>

+ 2 - 2
test/lib/registry/plugin/plugin.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <cr.h>
 #include <entt/entity/registry.hpp>
 

+ 2 - 2
test/lib/registry/shared/lib.cpp

@@ -1,5 +1,5 @@
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/attribute.h>
 #include <entt/entity/registry.hpp>
 

+ 2 - 2
test/lib/registry/shared/main.cpp

@@ -1,6 +1,6 @@
 #include <gtest/gtest.h>
-#include <common/boxed_type.h>
-#include <common/empty.h>
+#include "common/boxed_type.h"
+#include "common/empty.h"
 #include <entt/core/attribute.h>
 #include <entt/entity/entity.hpp>
 #include <entt/entity/registry.hpp>