Skip to content

Commit

Permalink
Replace test files
Browse files Browse the repository at this point in the history
  • Loading branch information
morzhovets committed Dec 10, 2023
1 parent de3fa86 commit 19381b8
Show file tree
Hide file tree
Showing 20 changed files with 884 additions and 884 deletions.
8 changes: 4 additions & 4 deletions test/sources/LibcxxArrayTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ template<typename TValue,
using vector = momo::stdish::vector<TValue, TAllocator,
momo::Array<TValue, momo::MemManagerStd<TAllocator>,
momo::ArrayItemTraits<TValue, momo::MemManagerStd<TAllocator>>, LibcxxArraySettings>>;
#include "LibcxxVectorTests.h"
#include "libcxx/VectorTests.h"
}
#undef LIBCXX_TEST_PREFIX
#undef LIBCXX_TEST_ARRAY
Expand All @@ -72,7 +72,7 @@ using vector = momo::stdish::vector<TValue, TAllocator,
momo::SegmentedArray<TValue, momo::MemManagerStd<TAllocator>,
LibcxxSegmentedArrayItemTraits<TValue, momo::MemManagerStd<TAllocator>>,
LibcxxSegmentedArraySettings>>;
#include "LibcxxVectorTests.h"
#include "libcxx/VectorTests.h"
}
#undef LIBCXX_TEST_PREFIX

Expand All @@ -91,7 +91,7 @@ using vector = momo::stdish::vector<TValue, TAllocator,
momo::SegmentedArray<TValue, momo::MemManagerStd<TAllocator>,
LibcxxSegmentedArrayItemTraits<TValue, momo::MemManagerStd<TAllocator>>,
LibcxxSegmentedArraySettings>>;
#include "LibcxxVectorTests.h"
#include "libcxx/VectorTests.h"
}
#undef LIBCXX_TEST_PREFIX

Expand All @@ -107,7 +107,7 @@ namespace libcxx_test_array_5
template<typename TValue,
typename TAllocator = std::allocator<TValue>>
using vector = momo::stdish::vector_intcap<5, TValue, TAllocator>;
#include "LibcxxVectorTests.h"
#include "libcxx/VectorTests.h"
}
#undef LIBCXX_TEST_PREFIX
#undef LIBCXX_TEST_INTCAP_ARRAY
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxHashMapTester.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ using unordered_map = momo::stdish::unordered_map<TKey, TMapped, THashFunc, TEqu
momo::MemManagerStd<TAllocator>,
momo::HashMapKeyValueTraits<TKey, TMapped, momo::MemManagerStd<TAllocator>>,
LibcxxHashMapSettings>>;
#include "LibcxxUnorderedMapTests.h"
#include "libcxx/UnorderedMapTests.h"
#undef LIBCXX_TEST_PREFIX

#undef _LIBCPP_DEBUG
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxHashMapTesterOpen8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ template<typename TKey, typename TMapped,
typename TAllocator = std::allocator<std::pair<const TKey, TMapped>>>
using unordered_map = momo::stdish::unordered_map_open<TKey, TMapped,
THashFunc, TEqualFunc, TAllocator>;
#include "LibcxxUnorderedMapTests.h"
#include "libcxx/UnorderedMapTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxHashMultiMapTester.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ using unordered_multimap = momo::stdish::unordered_multimap<TKey, TMapped, THash
momo::MemManagerStd<TAllocator>,
momo::HashMultiMapKeyValueTraits<TKey, TMapped, momo::MemManagerStd<TAllocator>>,
LibcxxHashMultiMapSettings>>;
#include "LibcxxUnorderedMultiMapTests.h"
#include "libcxx/UnorderedMultiMapTests.h"
#undef LIBCXX_TEST_PREFIX

#undef _LIBCPP_DEBUG
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxHashMultiMapTesterOpen8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ template<typename TKey, typename TMapped,
typename TAllocator = std::allocator<std::pair<const TKey, TMapped>>>
using unordered_multimap = momo::stdish::unordered_multimap_open<TKey, TMapped,
THashFunc, TEqualFunc, TAllocator>;
#include "LibcxxUnorderedMultiMapTests.h"
#include "libcxx/UnorderedMultiMapTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxHashSetTester.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ using unordered_set = momo::stdish::unordered_set<TKey, THashFunc, TEqualFunc, T
momo::MemManagerStd<TAllocator>,
momo::HashSetItemTraits<TKey, momo::MemManagerStd<TAllocator>>,
LibcxxHashSetSettings>>;
#include "LibcxxUnorderedSetTests.h"
#include "libcxx/UnorderedSetTests.h"
#undef LIBCXX_TEST_PREFIX

#undef _LIBCPP_DEBUG
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxHashSetTesterOpen8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ template<typename TKey,
typename TEqualFunc = std::equal_to<TKey>,
typename TAllocator = std::allocator<TKey>>
using unordered_set = momo::stdish::unordered_set_open<TKey, THashFunc, TEqualFunc, TAllocator>;
#include "LibcxxUnorderedSetTests.h"
#include "libcxx/UnorderedSetTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxTreeMapTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using map = momo::stdish::map<TKey, TMapped, TLessFunc, TAllocator,
momo::MemManagerStd<TAllocator>,
momo::TreeMapKeyValueTraits<TKey, TMapped, momo::MemManagerStd<TAllocator>>,
momo::TreeMapSettings>>;
#include "LibcxxMapTests.h"
#include "libcxx/MapTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxTreeMultiMapTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using multimap = momo::stdish::multimap<TKey, TMapped, TLessFunc, TAllocator,
momo::MemManagerStd<TAllocator>,
momo::TreeMapKeyValueTraits<TKey, TMapped, momo::MemManagerStd<TAllocator>>,
momo::TreeMapSettings>>;
#include "LibcxxMultiMapTests.h"
#include "libcxx/MultiMapTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxTreeMultiSetTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using multiset = momo::stdish::multiset<TKey, TLessFunc, TAllocator,
momo::MemManagerStd<TAllocator>,
momo::TreeSetItemTraits<TKey, momo::MemManagerStd<TAllocator>>,
momo::TreeSetSettings>>;
#include "LibcxxMultiSetTests.h"
#include "libcxx/MultiSetTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
2 changes: 1 addition & 1 deletion test/sources/LibcxxTreeSetTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using set = momo::stdish::set<TKey, TLessFunc, TAllocator,
momo::MemManagerStd<TAllocator>,
momo::TreeSetItemTraits<TKey, momo::MemManagerStd<TAllocator>>,
momo::TreeSetSettings>>;
#include "LibcxxSetTests.h"
#include "libcxx/SetTests.h"
#undef LIBCXX_TEST_PREFIX

} // namespace
Expand Down
Loading

0 comments on commit 19381b8

Please sign in to comment.