mirror of
https://github.com/ETLCPP/etl.git
synced 2026-05-01 11:29:09 +08:00
* Resolve all C++ -O2 warnings Resolve all C++ -O2 warnings Resolve all C++ -O2 warnings * Updated release notes and version * Made unit test suite names unique * Added etl::bit_v for C++17 * add stringify macro (#741) * Add include/linux/stringify.h from Linux kernel 2.6.12-rc2 (cherry picked from commit1da177e4c3) * Make __stringify support variable argument macros too For example: __stringify(__entry->irq, __entry->ret) will now convert it to: "REC->irq, REC->ret" It also still supports single arguments as the old macro did. Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com> Acked-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Steven Rostedt <rostedt@goodmis.org> LKML-Reference: <49DC6751.30308@cn.fujitsu.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> (cherry picked from commit8f7c2c3731) * Add documentation. * Adjust names in order to satisfy naming convention. * Use __VA_ARGS__ instead a GNU extension as this works with more compilers. Works with the newest versions of ICCAVR, GCC, CLANG and MSCV. C++11 may be required. * Adjust to ETL folder structure. * Change include guard to the one usual in ETL. * Add definition guard for STRINGIFY. --------- Co-authored-by: Linus Torvalds <torvalds@ppc970.osdl.org> Co-authored-by: Zhaolei <zhaolei@cn.fujitsu.com> * Updated stringify macro for variadic parameters * Edited comments * Added multi char type strcmp, strncmp, strcpy & strncpy * Added support for self transitions * Remove some unreachable code in bitset_new.h (#743) Warning[Pe111]: statement is unreachable * Re-enabled tests for etl::string_ext * Changes require for non-virtual messages * MutexMessageRouter example * Allow C++03 delegate in etl::callback_timer * #745 Assertion triggered in hash.h when compiling for MSP430 * Removed redundant #includes * Removed unused variable Minor format edit * Added time_to_next() status function * Added 'sentence case' versions of constants * Added C++03 compatible etl::move or etl::move_backward * Added c++03 zero parameter emplace member functions * Fix issue of release of an object on empty an pool * Remove used variable * Remove used variable * Change to require semicolons after debug count macros. Added error assert for vector reserve greater than capacity. * Added destructor to CMSIS_RTOS2 mutex * Updated version and release notes * Removed semicolon warnings * Updated vesrion and release notes * #753 [porting] IAR's overload resolution struggles with etl::span::span(etl::array&) #754 ambiguous etl::bit_stream_reader::bit_stream_reader() for some etl::span * #755 warning about constexpr in array.h * Re-enabled tests * const_reference at(size_t i) const is only constexpr from C++14 * Added conversion operators to std::span * MacOS clang span issue * MacOS clang span issue * MacOS clang span issue * MacOS clang span issue * MacOS clang span issue * Updated version and release notes * Possible fix for #756 * Fixed: move assignment not working for non-empty containers (#759) * Updated release notes * Make "private" includes relativ (#761) Avoid "include not found" when indirectly including etl-header Co-authored-by: Andreas Pelczer <pelczer@stoerk-tronic.com> * Make "private" includes relativ (#761) Avoid "include not found" when indirectly including etl-header Co-authored-by: Andreas Pelczer <pelczer@stoerk-tronic.com> * Remove BOM from random.h (#762) random.h is the only file with UTF8-BOM and IAR can not handle it. For compatibility reasons it should be removed. Co-authored-by: Andreas Pelczer <pelczer@stoerk-tronic.com> * Enabled etl::overload for C++11 & C++14 * Added conversion operators to std::span MacOS clang span issue MacOS clang span issue MacOS clang span issue MacOS clang span issue MacOS clang span issue * Updated version and release notes * Possible fix for #756 * Fixed: move assignment not working for non-empty containers (#759) * Updated release notes * Make "private" includes relativ (#761) Avoid "include not found" when indirectly including etl-header Co-authored-by: Andreas Pelczer <pelczer@stoerk-tronic.com> * Remove BOM from random.h (#762) random.h is the only file with UTF8-BOM and IAR can not handle it. For compatibility reasons it should be removed. Co-authored-by: Andreas Pelczer <pelczer@stoerk-tronic.com> * Enabled etl::overload for C++11 & C++14 * Commets added * #766 etl::unique_ptr::reset() can call deleter with nullptr argument * Refactored storage for etl::optional * Updated release notes * Updated release notes * Test name updates * Fixed alignment functionality * Updated versions * Updated versions * Initial code * Final changes * Fix maybe-uninitialized warning * Fix maybe-uninitialized warning * Added etl::string::fill() * Added etl::string interface to etl::base64 * static_cast for string_view & array_view size() member functions * Return raw pointer for `etl::multi_span::operator->()`. (#773) - using `operator*()` in case getting the current element is changed one day - using `&` to get the address Simply returning `p_value` may break in case the internal type of `p_value` would change. This way it is more robust to changes. * Added -> operator test * #773 Return raw pointer for etl::multi_span::operator->() * static_cast for string_view & array_view size() member functions * Initial code * Final changes * Fix maybe-uninitialized warning * Added etl::string::fill() * Added etl::string interface to etl::base64 * Add missing semicolons (#776) * #776 Add missing semicolons * moved BUILD_TESTS check outside of root cmake check to allow building tests in submodules (#777) added check for GNUC >= 11 for -Wstringop-overread ignore pragma since it isn't introduced until gcc/g++-11 Co-authored-by: Josh <joshua.martens@magna.com> * Try to fix library error for Github Actions for Clang C++20 * Try to fix library error for Github Actions for Clang C++20 * Added pul-request branches to CI * Removed temporary fix * Refactored swap * Added add_lvalue_reference for rvalue reference * Revert "Added add_lvalue_reference for rvalue reference" This reverts commit a09efffb8fadb0c25923fe5435b7b1f9bdd673f1. * Updated version and release notes * Updated version and release notes * Try to fix library error for Github Actions for Clang C++20 (cherry picked from commit f208eb4073c98b3c190b17a73db3b61aa35fae25) The line got lost in 95c7f44cc61d51406a70ccb9048724f9fbdd78f9. * Add helper macro which enables function-like macro overload with 1 or 2 arguments. Inspired by https://stackoverflow.com/a/11763277/ Warning: This requires support for variadic macros (`__VA_ARGS__`). These were officially added in C99 and C++11. * Add unit test for static_assert.h (cherry picked from commit 91e7f46effac2884de80a12ab0c7eda5ade5cabe) * Add static assert overload for only 1 argument. (cherry picked from commit ae8c19e8cba69ca209a13109a7225ce6281d945d) * Add test case for static_assert with only 1 argument. (cherry picked from commit 4d6e7a63094221feec22fe3addcccd903b2d81de) * Spelling. --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: David Hebbeker <dhebbeker@users.noreply.github.com> Co-authored-by: Linus Torvalds <torvalds@ppc970.osdl.org> Co-authored-by: Zhaolei <zhaolei@cn.fujitsu.com> Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com> Co-authored-by: Soma Veszelovszki <soma.veszelovszki@gmail.com> Co-authored-by: Andreas <and1p@web.de> Co-authored-by: Andreas Pelczer <pelczer@stoerk-tronic.com> Co-authored-by: H1MSK <ksda47832338@Outlook.com> Co-authored-by: jmartens-42 <jmartens@jayhawk.us> Co-authored-by: Josh <joshua.martens@magna.com> Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.co.uk>
1195 lines
36 KiB
C++
1195 lines
36 KiB
C++
/******************************************************************************
|
|
The MIT License(MIT)
|
|
|
|
Embedded Template Library.
|
|
https://github.com/ETLCPP/etl
|
|
https://www.etlcpp.com
|
|
|
|
Copyright(c) 2020 John Wellbelove
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files(the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include "unit_test_framework.h"
|
|
|
|
#include "etl/span.h"
|
|
#include "etl/array.h"
|
|
|
|
#include <array>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
#if ETL_USING_CPP20
|
|
#include <span>
|
|
#endif
|
|
|
|
namespace
|
|
{
|
|
SUITE(test_span_dynamic_extent)
|
|
{
|
|
static const size_t SIZE = 10UL;
|
|
|
|
using EtlData = etl::array<int, SIZE>;
|
|
using StlData = std::array<int, SIZE>;
|
|
using StlVData = std::vector<int>;
|
|
|
|
using View = etl::span<int>;
|
|
using CView = etl::span<const int>;
|
|
|
|
#if ETL_USING_CPP20
|
|
using StdView = std::span<int>;
|
|
#endif
|
|
|
|
EtlData etldata = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
StlData stldata = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
StlVData stlvdata = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
EtlData etldatasmaller = { 0, 1, 2, 3, 4, 5, 5, 7, 8, 9 };
|
|
|
|
EtlData etloriginal = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
EtlData etlmodified = { 0, 1, 10, 10, 10, 10, 10, 10, 8, 9 };
|
|
|
|
const EtlData cetldata = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
const StlData cstldata = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
const StlVData cstlvdata = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
int cdata[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
int* pcdata = cdata;
|
|
|
|
const int ccdata[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
const int* pccdata = ccdata;
|
|
|
|
//*************************************************************************
|
|
TEST(test_default_constructor)
|
|
{
|
|
View view;
|
|
|
|
CHECK_EQUAL(0U, view.size());
|
|
CHECK_EQUAL(0U, view.max_size());
|
|
CHECK(view.empty());
|
|
}
|
|
|
|
#if ETL_USING_CPP20
|
|
//*************************************************************************
|
|
TEST(test_construct_from_std_span)
|
|
{
|
|
StdView stdview(stldata);
|
|
View view(stdview);
|
|
|
|
CHECK_EQUAL(stdview.size(), view.size());
|
|
CHECK_EQUAL(stdview.size(), view.size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), stdview.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_etl_array_1)
|
|
{
|
|
View view(etldata);
|
|
|
|
CHECK_EQUAL(etldata.size(), view.size());
|
|
CHECK_EQUAL(etldata.max_size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), etldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_etl_array_1_const)
|
|
{
|
|
CView view(cetldata);
|
|
|
|
CHECK_EQUAL(cetldata.size(), view.size());
|
|
CHECK_EQUAL(cetldata.max_size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), cetldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_etl_array_2)
|
|
{
|
|
View view(etldata.begin(), etldata.end());
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), etldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_etl_array_2_const)
|
|
{
|
|
CView view(cetldata.begin(), cetldata.end());
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), cetldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_stl_array_1)
|
|
{
|
|
View view(stldata);
|
|
|
|
CHECK_EQUAL(stldata.size(), view.size());
|
|
CHECK_EQUAL(stldata.max_size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), stldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_stl_array_1_const)
|
|
{
|
|
CView view(cstldata);
|
|
|
|
CHECK_EQUAL(cstldata.size(), view.size());
|
|
CHECK_EQUAL(cstldata.max_size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), cstldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_stl_array_2)
|
|
{
|
|
View view(stldata.begin(), stldata.end());
|
|
|
|
CHECK_EQUAL(stldata.size(), view.size());
|
|
CHECK_EQUAL(stldata.max_size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), stldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_stl_array_2_const)
|
|
{
|
|
CView view(cstldata.begin(), cstldata.end());
|
|
|
|
CHECK_EQUAL(cstldata.size(), view.size());
|
|
CHECK_EQUAL(cstldata.max_size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), cstldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_stl_vector_1)
|
|
{
|
|
View view(stlvdata);
|
|
|
|
CHECK_EQUAL(stlvdata.size(), view.size());
|
|
CHECK_EQUAL(stlvdata.size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), stlvdata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_stl_vector_1_const)
|
|
{
|
|
CView view(cstlvdata);
|
|
|
|
CHECK_EQUAL(cstlvdata.size(), view.size());
|
|
CHECK_EQUAL(cstlvdata.size(), view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), cstlvdata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_c_array_1)
|
|
{
|
|
View view(pcdata, SIZE);
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), pcdata);
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_c_array_1_const)
|
|
{
|
|
CView view(pccdata, SIZE);
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), pccdata);
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_c_array_2)
|
|
{
|
|
View view(cdata);
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), cdata);
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_c_array_2_const)
|
|
{
|
|
CView view(ccdata);
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), ccdata);
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_implicit_constructor_c_array_2)
|
|
{
|
|
CView view;
|
|
|
|
view = ccdata;
|
|
|
|
CHECK_EQUAL(SIZE, view.size());
|
|
CHECK_EQUAL(SIZE, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), ccdata);
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
#if ETL_USING_CPP17 && ETL_HAS_INITIALIZER_LIST && !defined(ETL_TEMPLATE_DEDUCTION_GUIDE_TESTS_DISABLED)
|
|
//*************************************************************************
|
|
TEST(test_cpp17_deduced_constructor)
|
|
{
|
|
etl::array data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
etl::span span1{ data };
|
|
etl::span span2{ data.begin(), data.end() };
|
|
etl::span span3{ data.begin(), data.size() };
|
|
etl::span span4{ span1 };
|
|
|
|
int c_array[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::span span5{ c_array };
|
|
|
|
bool isEqual = false;
|
|
|
|
isEqual = std::equal(span1.begin(), span1.end(), data.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(span2.begin(), span2.end(), data.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(span3.begin(), span3.end(), data.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(span4.begin(), span4.end(), data.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(span5.begin(), span5.end(), c_array);
|
|
CHECK(isEqual);
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
TEST(test_constructor_range)
|
|
{
|
|
View view(etldata.begin() + 2, etldata.end() - 2);
|
|
|
|
CHECK_EQUAL(etldata.size() - 4, view.size());
|
|
CHECK_EQUAL(etldata.size() - 4, view.max_size());
|
|
|
|
bool isEqual = std::equal(view.begin(), view.end(), etldata.begin() + 2);
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_copy_constructor_from_same_span_type)
|
|
{
|
|
etl::array<char, 10> data = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
const etl::span<char> view1(data.data(), data.data() + data.size());
|
|
etl::span<char> view2(view1);
|
|
|
|
CHECK_EQUAL(data.size(), view1.size());
|
|
CHECK_EQUAL(data.size(), view2.size());
|
|
|
|
bool isEqual = std::equal(view1.begin(), view1.end(), view2.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_copy_constructor_from_different_span_type)
|
|
{
|
|
etl::array<char, 10> data = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
const etl::span<char> view1(data.data(), data.data() + data.size());
|
|
etl::span<const char> view2(view1);
|
|
|
|
CHECK_EQUAL(data.size(), view1.size());
|
|
CHECK_EQUAL(data.size(), view2.size());
|
|
|
|
bool isEqual = std::equal(view1.begin(), view1.end(), view2.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_assign_from_span)
|
|
{
|
|
View view1(etldata);
|
|
View view2;
|
|
|
|
CView cview1(etldata);
|
|
CView cview2;
|
|
|
|
view2 = view1;
|
|
cview2 = cview1;
|
|
|
|
CHECK_EQUAL(view1.size(), view2.size());
|
|
CHECK_EQUAL(view1.max_size(), view2.max_size());
|
|
|
|
CHECK_EQUAL(cview1.size(), cview2.size());
|
|
CHECK_EQUAL(cview1.max_size(), cview2.max_size());
|
|
|
|
bool isEqual;
|
|
|
|
isEqual = std::equal(view1.begin(), view1.end(), view2.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(cview1.begin(), cview1.end(), cview2.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_modify_range)
|
|
{
|
|
View view(etloriginal.begin() + 2, etloriginal.end() - 2);
|
|
|
|
CHECK_EQUAL(etloriginal.size() - 4, view.size());
|
|
CHECK_EQUAL(etloriginal.size() - 4, view.max_size());
|
|
|
|
std::fill(view.begin(), view.end(), 10);
|
|
|
|
bool isEqual;
|
|
|
|
isEqual = std::equal(etloriginal.begin(), etloriginal.end(), etlmodified.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(etldata.begin(), etldata.end(), etlmodified.begin());
|
|
CHECK(!isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_begin_end)
|
|
{
|
|
View view(etldata.begin(), etldata.end());
|
|
CView cview(etldata.begin(), etldata.end());
|
|
|
|
CHECK_EQUAL(etldata.begin(), view.begin());
|
|
CHECK_EQUAL(etldata.begin(), cview.begin());
|
|
|
|
CHECK_EQUAL(etldata.end(), view.rbegin().base());
|
|
CHECK_EQUAL(etldata.end(), cview.rbegin().base());
|
|
|
|
CHECK_EQUAL(etldata.end(), view.end());
|
|
CHECK_EQUAL(etldata.end(), cview.end());
|
|
|
|
CHECK_EQUAL(etldata.begin(), view.rend().base());
|
|
CHECK_EQUAL(etldata.begin(), cview.rend().base());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_front_back)
|
|
{
|
|
View view(etldata.begin(), etldata.end());
|
|
CView cview(etldata.begin(), etldata.end());
|
|
|
|
CHECK_EQUAL(etldata.front(), view.front());
|
|
CHECK_EQUAL(etldata.front(), cview.front());
|
|
|
|
CHECK_EQUAL(etldata.back(), view.back());
|
|
CHECK_EQUAL(etldata.back(), cview.back());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_data)
|
|
{
|
|
View view(etldata.begin(), etldata.end());
|
|
CView cview(etldata.begin(), etldata.end());
|
|
|
|
CHECK_EQUAL(etldata.data(), view.data());
|
|
CHECK_EQUAL(etldata.data(), cview.data());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_index_operator)
|
|
{
|
|
View view(etldata.begin(), etldata.end());
|
|
CView cview(etldata.begin(), etldata.end());
|
|
|
|
for (size_t i = 0UL; i < etldata.size(); ++i)
|
|
{
|
|
CHECK_EQUAL(etldata[i], view[i]);
|
|
CHECK_EQUAL(etldata[i], cview[i]);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_assignment_operator)
|
|
{
|
|
View view(etldata);
|
|
CView cview = view;
|
|
|
|
CHECK_EQUAL(etldata.size(), cview.size());
|
|
CHECK_EQUAL(etldata.max_size(), cview.max_size());
|
|
|
|
bool isEqual = std::equal(cview.begin(), cview.end(), etldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_empty)
|
|
{
|
|
View view1(etldata.begin(), etldata.begin());
|
|
CHECK(view1.empty());
|
|
|
|
View view2(etldata.begin(), etldata.begin() + 1);
|
|
CHECK(!view2.empty());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_size)
|
|
{
|
|
View view(etldata);
|
|
|
|
CHECK_EQUAL(etldata.size(), view.size());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_size_bytes)
|
|
{
|
|
View view(etldata);
|
|
|
|
CHECK_EQUAL(etldata.size() * sizeof(EtlData::value_type), view.size_bytes());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_swap)
|
|
{
|
|
View view1(etldata);
|
|
View view2(etldatasmaller);
|
|
|
|
std::swap(view1, view2);
|
|
|
|
CHECK_EQUAL(etldata.size(), view1.size());
|
|
CHECK_EQUAL(etldatasmaller.size(), view2.size());
|
|
|
|
bool isEqual;
|
|
|
|
isEqual = std::equal(view1.begin(), view1.end(), etldatasmaller.begin());
|
|
CHECK(isEqual);
|
|
|
|
isEqual = std::equal(view2.begin(), view2.end(), etldata.begin());
|
|
CHECK(isEqual);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_first)
|
|
{
|
|
std::vector<int> original = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
|
std::vector<int> first = { 1, 2, 3, 4, 5, 6 };
|
|
View view(original);
|
|
CView cview(original);
|
|
|
|
bool isEqual;
|
|
|
|
auto result = view.first<6>();
|
|
isEqual = std::equal(result.begin(), result.end(), first.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(first.size(), result.extent);
|
|
CHECK_EQUAL(first.size(), result.size());
|
|
|
|
auto cresult = cview.first<6>();
|
|
isEqual = std::equal(cresult.begin(), cresult.end(), first.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(first.size(), cresult.extent);
|
|
CHECK_EQUAL(first.size(), cresult.size());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_first_2)
|
|
{
|
|
std::vector<int> original = {1, 2, 3, 4, 5, 6, 7, 8};
|
|
std::vector<int> first = {1, 2, 3, 4, 5, 6};
|
|
View view(original);
|
|
CView cview(original);
|
|
|
|
bool isEqual;
|
|
|
|
auto result = view.first(6);
|
|
isEqual = std::equal(result.begin(), result.end(), first.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(first.size(), result.size());
|
|
|
|
auto cresult = cview.first(6);
|
|
isEqual = std::equal(cresult.begin(), cresult.end(), first.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(first.size(), cresult.size());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_last)
|
|
{
|
|
std::vector<int> original = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
|
std::vector<int> last = { 3, 4, 5, 6, 7, 8 };
|
|
View view(original);
|
|
CView cview(original);
|
|
|
|
bool isEqual;
|
|
|
|
auto result = view.last<6>();
|
|
isEqual = std::equal(result.begin(), result.end(), last.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(last.size(), result.extent);
|
|
CHECK_EQUAL(last.size(), result.size());
|
|
|
|
auto cresult = cview.last<6>();
|
|
isEqual = std::equal(cresult.begin(), cresult.end(), last.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(last.size(), cresult.extent);
|
|
CHECK_EQUAL(last.size(), cresult.size());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_last_2)
|
|
{
|
|
std::vector<int> original = {1, 2, 3, 4, 5, 6, 7, 8};
|
|
std::vector<int> last = {3, 4, 5, 6, 7, 8};
|
|
View view(original);
|
|
CView cview(original);
|
|
|
|
bool isEqual;
|
|
|
|
auto result = view.last(6);
|
|
isEqual = std::equal(result.begin(), result.end(), last.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(last.size(), result.size());
|
|
|
|
auto cresult = cview.last(6);
|
|
isEqual = std::equal(cresult.begin(), cresult.end(), last.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(last.size(), cresult.size());
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_subspan)
|
|
{
|
|
std::vector<int> original = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
|
std::vector<int> sub1 = { 3, 4, 5, 6 };
|
|
std::vector<int> sub2 = { 3, 4, 5, 6, 7, 8 };
|
|
View view(original);
|
|
CView cview(original);
|
|
|
|
bool isEqual;
|
|
|
|
auto span1 = view.subspan<2, 4>();
|
|
isEqual = std::equal(span1.begin(), span1.end(), sub1.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(sub1.size(), span1.extent);
|
|
CHECK_EQUAL(sub1.size(), span1.size());
|
|
|
|
auto cspan1 = cview.subspan<2, 4>();
|
|
isEqual = std::equal(cspan1.begin(), cspan1.end(), sub1.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(sub1.size(), cspan1.extent);
|
|
CHECK_EQUAL(sub1.size(), cspan1.size());
|
|
|
|
auto span2 = view.subspan<2>();
|
|
isEqual = std::equal(span2.begin(), span2.end(), sub2.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(etl::dynamic_extent, span2.extent);
|
|
CHECK_EQUAL(sub2.size(), span2.size());
|
|
|
|
auto cspan2 = cview.subspan<2>();
|
|
isEqual = std::equal(cspan2.begin(), cspan2.end(), sub2.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(etl::dynamic_extent, cspan2.extent);
|
|
CHECK_EQUAL(sub2.size(), cspan2.size());
|
|
|
|
auto span3 = view.subspan(2, 4);
|
|
isEqual = std::equal(span3.begin(), span3.end(), sub1.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(etl::dynamic_extent, span3.extent);
|
|
CHECK_EQUAL(sub1.size(), span3.size());
|
|
|
|
auto cspan3 = cview.subspan(2, 4);
|
|
isEqual = std::equal(cspan3.begin(), cspan3.end(), sub1.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(etl::dynamic_extent, cspan3.extent);
|
|
CHECK_EQUAL(sub1.size(), cspan3.size());
|
|
|
|
auto span4 = view.subspan(2);
|
|
isEqual = std::equal(span4.begin(), span4.end(), sub2.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(etl::dynamic_extent, span4.extent);
|
|
CHECK_EQUAL(sub2.size(), span4.size());
|
|
|
|
auto cspan4 = cview.subspan(2);
|
|
isEqual = std::equal(cspan4.begin(), cspan4.end(), sub2.begin());
|
|
CHECK(isEqual);
|
|
CHECK_EQUAL(etl::dynamic_extent, cspan4.extent);
|
|
CHECK_EQUAL(sub2.size(), cspan4.size());
|
|
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_hash)
|
|
{
|
|
View view(etldata.begin(), etldata.end());
|
|
CView cview(etldata.begin(), etldata.end());
|
|
|
|
size_t hashdata = etl::private_hash::generic_hash<size_t>(reinterpret_cast<const uint8_t*>(etldata.data()),
|
|
reinterpret_cast<const uint8_t*>(etldata.data() + etldata.size()));
|
|
|
|
size_t hashview = etl::hash<View>()(view);
|
|
size_t hashcview = etl::hash<CView>()(cview);
|
|
|
|
CHECK_EQUAL(hashdata, hashview);
|
|
CHECK_EQUAL(hashdata, hashcview);
|
|
}
|
|
|
|
#if ETL_USING_CPP17
|
|
//*************************************************************************
|
|
TEST(test_template_deduction_guide_for_c_array)
|
|
{
|
|
int data[] = { 1, 2, 3, 4 };
|
|
|
|
etl::span s = data;
|
|
|
|
CHECK_EQUAL(ETL_OR_STD17::size(data), s.extent);
|
|
CHECK_EQUAL(ETL_OR_STD17::size(data), s.size());
|
|
CHECK((std::is_same_v<int, std::remove_reference_t<decltype(s.front())>>));
|
|
}
|
|
|
|
#if ETL_USING_STL
|
|
//*************************************************************************
|
|
TEST(test_template_deduction_guide_for_std_array)
|
|
{
|
|
std::array<int, 4U> data = { 1, 2, 3, 4 };
|
|
|
|
etl::span s = data;
|
|
|
|
CHECK_EQUAL(ETL_OR_STD17::size(data), s.extent);
|
|
CHECK_EQUAL(ETL_OR_STD17::size(data), s.size());
|
|
CHECK((std::is_same_v<int, std::remove_reference_t<decltype(s.front())>>));
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
TEST(test_template_deduction_guide_for_etl_array)
|
|
{
|
|
etl::array<int, 4U> data = { 1, 2, 3, 4 };
|
|
|
|
etl::span s = data;
|
|
|
|
CHECK_EQUAL(ETL_OR_STD17::size(data), s.extent);
|
|
CHECK_EQUAL(ETL_OR_STD17::size(data), s.size());
|
|
CHECK((std::is_same_v<int, std::remove_reference_t<decltype(s.front())>>));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_template_deduction_guide_for_iterators)
|
|
{
|
|
etl::array<int, 4U> data = { 1, 2, 3, 4 };
|
|
|
|
etl::span s{ data.begin(), data.end() };
|
|
|
|
CHECK_EQUAL(etl::dynamic_extent, s.extent);
|
|
CHECK_EQUAL(4U, s.size());
|
|
CHECK((std::is_same_v<int, std::remove_reference_t<decltype(s.front())>>));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_template_deduction_guide_for_iterator_and_size)
|
|
{
|
|
etl::array<int, 4U> data = { 1, 2, 3, 4 };
|
|
|
|
etl::span s{ data.begin(), data.size() };
|
|
|
|
CHECK_EQUAL(etl::dynamic_extent, s.extent);
|
|
CHECK_EQUAL(4U, s.size());
|
|
CHECK((std::is_same_v<int, std::remove_reference_t<decltype(s.front())>>));
|
|
}
|
|
#endif
|
|
|
|
//*************************************************************************
|
|
void f_issue_481(etl::span<const char, 10>)
|
|
{
|
|
}
|
|
|
|
TEST(test_issue_481)
|
|
{
|
|
// Should compile.
|
|
char c[10];
|
|
f_issue_481(c);
|
|
}
|
|
|
|
//*************************************************************************
|
|
#include "etl/private/diagnostic_unused_function_push.h"
|
|
|
|
struct C_issue_482 {};
|
|
|
|
void f_issue_482(etl::span<char>)
|
|
{
|
|
}
|
|
|
|
void f_issue_482(etl::span<C_issue_482>)
|
|
{
|
|
}
|
|
|
|
TEST(test_issue_482)
|
|
{
|
|
etl::array<C_issue_482, 10> c;
|
|
|
|
// Should compile without ambiguous function error.
|
|
f_issue_482(c);
|
|
}
|
|
|
|
//*************************************************************************
|
|
void f_issue_482_2(etl::span<char, 10>)
|
|
{
|
|
}
|
|
|
|
void f_issue_482_2(etl::span<C_issue_482, 10>)
|
|
{
|
|
}
|
|
|
|
TEST(test_issue_482_2)
|
|
{
|
|
etl::array<C_issue_482, 10> c;
|
|
|
|
// Should compile without ambiguous function error.
|
|
f_issue_482(c);
|
|
}
|
|
|
|
//*************************************************************************
|
|
void f_issue_486(etl::span<const char, 11>)
|
|
{
|
|
}
|
|
|
|
TEST(test_issue_486)
|
|
{
|
|
//std::array<char, 10> c;
|
|
|
|
// Should not compile.
|
|
//etl::span<char, 11> value(c);
|
|
|
|
// Should not compile.
|
|
//f_issue_486(c);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_iterator_pre_increment)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
|
|
|
|
View view{ data };
|
|
|
|
View::circular_iterator sci = view.begin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i], *++sci);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_iterator_pre_increment_for_subspan)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2 };
|
|
|
|
View view{ data };
|
|
View subspan = view.subspan<2, 4>();
|
|
|
|
View::circular_iterator sci = subspan.begin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i], *++sci);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_iterator_post_increment)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
View view{ data };
|
|
|
|
View::circular_iterator sci = view.begin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i % ETL_OR_STD17::size(expected)], *sci++);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_iterator_post_increment_for_subspan)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5 };
|
|
|
|
View view{ data };
|
|
View subspan = view.subspan<2, 4>();
|
|
|
|
View::circular_iterator sci = subspan.begin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i], *sci++);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_reverse_iterator_pre_increment)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 8, 7, 6, 5, 4, 3, 2, 1, 0, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 9 };
|
|
|
|
View view{ data };
|
|
|
|
View::reverse_circular_iterator sci = view.rbegin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i % ETL_OR_STD17::size(expected)], *++sci);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_reverse_iterator_pre_increment_for_subspan)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 4, 3, 2, 5, 4, 3, 2, 5, 4, 3, 2, 5, 4, 3, 2, 5, 4, 3, 2, 5 };
|
|
|
|
View view{ data };
|
|
View subspan = view.subspan<2, 4>();
|
|
|
|
etl::span<int, 10U>::reverse_circular_iterator sci = subspan.rbegin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i % ETL_OR_STD17::size(expected)], *++sci);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_reverse_iterator_post_increment)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 };
|
|
|
|
View view{ data };
|
|
|
|
View::reverse_circular_iterator sci = view.rbegin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i % ETL_OR_STD17::size(expected)], *sci++);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_circular_reverse_iterator_post_increment_for_subspan)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 5, 4, 3, 2, 5, 4, 3, 2, 5, 4, 3, 2, 5, 4, 3, 2, 5, 4, 3, 2 };
|
|
|
|
View view{ data };
|
|
View subspan = view.subspan<2, 4>();
|
|
|
|
View::reverse_circular_iterator sci = subspan.rbegin_circular();
|
|
|
|
for (int i = 0; i < 20; ++i)
|
|
{
|
|
CHECK_EQUAL(expected[i % ETL_OR_STD17::size(expected)], *sci++);
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_plus_equals)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
View view{ data };
|
|
|
|
for (int step = 1; step < 20; ++step)
|
|
{
|
|
View::circular_iterator sci = view.begin_circular();
|
|
|
|
for (int i = 0; i < 20; i += step)
|
|
{
|
|
CHECK_EQUAL(expected[i % 10], *sci);
|
|
sci += step;
|
|
}
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_plus)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
|
|
View view{ data };
|
|
|
|
for (int step = 1; step < 20; ++step)
|
|
{
|
|
View::circular_iterator sci = view.begin_circular();
|
|
|
|
for (int i = 0; i < 20; i += step)
|
|
{
|
|
CHECK_EQUAL(expected[i % 10], *sci);
|
|
sci = sci + step;
|
|
}
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_minus_equals)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 0, 9, 8, 7, 6, 5, 4, 3, 2, 1 };
|
|
|
|
View view{ data };
|
|
|
|
for (int step = 1; step < 20; ++step)
|
|
{
|
|
View::circular_iterator sci = view.begin_circular();
|
|
|
|
for (int i = 0; i < 20; i += step)
|
|
{
|
|
CHECK_EQUAL(expected[i % 10], *sci);
|
|
sci -= step;
|
|
}
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_minus)
|
|
{
|
|
etl::array<int, 10> data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 20> expected{ 0, 9, 8, 7, 6, 5, 4, 3, 2, 1 };
|
|
|
|
View view{ data };
|
|
|
|
for (int step = 1; step < 20; ++step)
|
|
{
|
|
View::circular_iterator sci = view.begin_circular();
|
|
|
|
for (int i = 0; i < 20; i += step)
|
|
{
|
|
CHECK_EQUAL(expected[i % 10], *sci);
|
|
sci = sci - step;
|
|
}
|
|
}
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_equality)
|
|
{
|
|
etl::array<int, 10> data1{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data2{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data3{ 0, 1, 2, 3, 4, 4, 6, 7, 8, 9 };
|
|
etl::array<int, 9> data4{ 0, 1, 2, 3, 5, 6, 7, 8, 9 };
|
|
|
|
int i = 1;
|
|
|
|
View view1{ data1 };
|
|
View view2{ data1 };
|
|
View view3{ data2 };
|
|
View view4{ data3 };
|
|
View view5{ data4 };
|
|
View view6;
|
|
View view7;
|
|
View view8(&i, &i);
|
|
|
|
CHECK_TRUE(etl::equal(view1, view2));
|
|
CHECK_TRUE(etl::equal(view1, view3));
|
|
CHECK_FALSE(etl::equal(view1, view4));
|
|
CHECK_FALSE(etl::equal(view1, view5));
|
|
CHECK_TRUE(etl::equal(view6, view6));
|
|
CHECK_TRUE(etl::equal(view6, view7));
|
|
CHECK_TRUE(etl::equal(view6, view8));
|
|
CHECK_TRUE(etl::equal(view8, view8));
|
|
|
|
CHECK_TRUE(view1 == view2);
|
|
CHECK_FALSE(view1 == view3);
|
|
CHECK_FALSE(view1 == view4);
|
|
CHECK_FALSE(view1 == view5);
|
|
CHECK_TRUE(view6 == view6);
|
|
CHECK_TRUE(view6 == view7);
|
|
CHECK_FALSE(view6 == view8);
|
|
CHECK_TRUE(view8 == view8);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_equality_one_is_const)
|
|
{
|
|
etl::array<int, 10> data1{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data2{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data3{ 0, 1, 2, 3, 4, 4, 6, 7, 8, 9 };
|
|
etl::array<int, 9> data4{ 0, 1, 2, 3, 5, 6, 7, 8, 9 };
|
|
|
|
int i = 1;
|
|
|
|
View view1{ data1 };
|
|
CView view2{ data1 };
|
|
CView view3{ data2 };
|
|
CView view4{ data3 };
|
|
CView view5{ data4 };
|
|
View view6;
|
|
CView view7;
|
|
CView view8(&i, &i);
|
|
|
|
CHECK_TRUE(etl::equal(view1, view2));
|
|
CHECK_TRUE(etl::equal(view1, view3));
|
|
CHECK_FALSE(etl::equal(view1, view4));
|
|
CHECK_FALSE(etl::equal(view1, view5));
|
|
CHECK_TRUE(etl::equal(view6, view6));
|
|
CHECK_TRUE(etl::equal(view6, view7));
|
|
CHECK_TRUE(etl::equal(view6, view8));
|
|
CHECK_TRUE(etl::equal(view8, view8));
|
|
|
|
CHECK_TRUE(view1 == view2);
|
|
CHECK_FALSE(view1 == view3);
|
|
CHECK_FALSE(view1 == view4);
|
|
CHECK_FALSE(view1 == view5);
|
|
CHECK_TRUE(view6 == view6);
|
|
CHECK_TRUE(view6 == view7);
|
|
CHECK_FALSE(view6 == view8);
|
|
CHECK_TRUE(view8 == view8);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_not_equal)
|
|
{
|
|
etl::array<int, 10> data1{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data2{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data3{ 0, 1, 2, 3, 4, 4, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data4{ 0, 1, 2, 3, 5, 6, 7, 8, 9 };
|
|
|
|
int i = 1;
|
|
|
|
View view1{ data1 };
|
|
View view2{ data1 };
|
|
View view3{ data2 };
|
|
View view4{ data3 };
|
|
View view5{ data4 };
|
|
View view6;
|
|
View view7;
|
|
View view8(&i, &i);
|
|
|
|
CHECK_TRUE(etl::equal(view1, view2));
|
|
CHECK_TRUE(etl::equal(view1, view3));
|
|
CHECK_FALSE(etl::equal(view1, view4));
|
|
CHECK_FALSE(etl::equal(view1, view5));
|
|
CHECK_TRUE(etl::equal(view6, view6));
|
|
CHECK_TRUE(etl::equal(view6, view7));
|
|
CHECK_TRUE(etl::equal(view6, view8));
|
|
CHECK_TRUE(etl::equal(view8, view8));
|
|
|
|
CHECK_FALSE(view1 != view2);
|
|
CHECK_TRUE(view1 != view3);
|
|
CHECK_TRUE(view1 != view4);
|
|
CHECK_TRUE(view1 != view5);
|
|
CHECK_FALSE(view6 != view6);
|
|
CHECK_FALSE(view6 != view7);
|
|
CHECK_TRUE(view6 != view8);
|
|
CHECK_FALSE(view8 != view8);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_operator_not_equal_one_is_const)
|
|
{
|
|
etl::array<int, 10> data1{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data2{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
|
etl::array<int, 10> data3{ 0, 1, 2, 3, 4, 4, 6, 7, 8, 9 };
|
|
etl::array<int, 9> data4{ 0, 1, 2, 3, 5, 6, 7, 8, 9 };
|
|
|
|
int i = 1;
|
|
|
|
View view1{ data1 };
|
|
CView view2{ data1 };
|
|
CView view3{ data2 };
|
|
CView view4{ data3 };
|
|
CView view5{ data4 };
|
|
View view6;
|
|
View view7;
|
|
View view8(&i, &i);
|
|
|
|
CHECK_TRUE(etl::equal(view1, view2));
|
|
CHECK_TRUE(etl::equal(view1, view3));
|
|
CHECK_FALSE(etl::equal(view1, view4));
|
|
CHECK_FALSE(etl::equal(view1, view5));
|
|
CHECK_TRUE(etl::equal(view6, view6));
|
|
CHECK_TRUE(etl::equal(view6, view7));
|
|
CHECK_TRUE(etl::equal(view6, view8));
|
|
CHECK_TRUE(etl::equal(view8, view8));
|
|
|
|
CHECK_FALSE(view1 != view1);
|
|
CHECK_FALSE(view1 != view2);
|
|
CHECK_TRUE(view1 != view3);
|
|
CHECK_TRUE(view1 != view4);
|
|
CHECK_TRUE(view1 != view5);
|
|
CHECK_FALSE(view6 != view6);
|
|
CHECK_FALSE(view6 != view7);
|
|
CHECK_TRUE(view6 != view8);
|
|
CHECK_FALSE(view8 != view8);
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_convert_span_any_to_span_byte)
|
|
{
|
|
float data[2]{3.141592f, 2.71828f };
|
|
|
|
auto const const_bytes = etl::as_bytes(etl::span<float, etl::dynamic_extent>{data});
|
|
auto const writable_bytes = etl::as_writable_bytes(etl::span<float, etl::dynamic_extent>{data});
|
|
|
|
CHECK_EQUAL(const_bytes.size(), sizeof(data));
|
|
CHECK_EQUAL(writable_bytes.size(), sizeof(data));
|
|
}
|
|
|
|
#include "etl/private/diagnostic_pop.h"
|
|
};
|
|
}
|