David Hebbeker 3392a6cd88
add static assert with auto message (#740)
* 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 commit 1da177e4c3)

* 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 commit 8f7c2c3731)

* 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>
2024-02-22 19:11:38 +00:00
..
Deprecated literal with suffix (#416) 2021-09-02 13:03:38 +01:00
etl_error_handler Removed unused declaration 2023-05-19 19:33:50 +01:00
etl_initializer_list C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
Performance/unordered_map literal with suffix (#416) 2021-09-02 13:03:38 +01:00
syntax_check add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
UnitTest++ style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
vs2019 Work in progress 2023-04-02 11:06:42 +01:00
vs2022 add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
CMakeLists.txt add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
data.h Updated copyright notice 2022-06-10 21:45:37 +01:00
etl_profile.h add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
iterators_for_unit_tests.h Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
main.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
maincpp03check.cpp Work in progress 2020-01-09 11:15:50 +00:00
meson.build add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
murmurhash3.cpp literal with suffix (#416) 2021-09-02 13:03:38 +01:00
murmurhash3.h Add free-standing sanity tests for C++03/11/14/17 (#351) 2021-03-12 14:13:31 +00:00
run-syntax-checks.sh Refactored parallel build methods 2023-07-04 18:20:20 +01:00
run-tests.sh add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_algorithm.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_alignment.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_array_view.cpp Fixed Address Sanitizer issues 2023-04-28 10:32:58 +01:00
test_array_wrapper.cpp Fixed Address Sanitizer issues 2023-04-28 10:32:58 +01:00
test_array.cpp PR for constexpr for etl::array 2023-07-04 11:45:11 +01:00
test_atomic.cpp Fix to message_packet 2022-06-24 15:59:25 +01:00
test_base64.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_binary.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_bip_buffer_spsc_atomic.cpp Bip buffer improvements (#575) 2022-07-28 08:18:47 +01:00
test_bit_stream_reader_big_endian.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_bit_stream_reader_little_endian.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_bit_stream_writer_big_endian.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_bit_stream_writer_little_endian.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_bit_stream.cpp Resolve all C++ -O2 warnings 2023-08-07 07:33:59 +01:00
test_bit.cpp Finished floating point conversions and tests 2022-10-24 14:24:28 +01:00
test_bitset_legacy.cpp Fix issue #722 Bitset accesses memory out of bounds (#724) 2023-07-04 11:46:00 +01:00
test_bitset_new_default_element_type.cpp Fix issue #722 Bitset accesses memory out of bounds (#724) 2023-07-04 11:46:00 +01:00
test_bitset_new_explicit_single_element_type.cpp Fix issue #722 Bitset accesses memory out of bounds (#724) 2023-07-04 11:46:00 +01:00
test_bitset_new_ext_default_element_type.cpp Fix issue #722 Bitset accesses memory out of bounds (#724) 2023-07-04 11:46:00 +01:00
test_bitset_new_ext_explicit_single_element_type.cpp Fix issue #722 Bitset accesses memory out of bounds (#724) 2023-07-04 11:46:00 +01:00
test_bloom_filter.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_bresenham_line.cpp Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
test_bsd_checksum.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_buffer_descriptors.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_byte_stream.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_byte.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_callback_service.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_callback_timer_atomic.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_callback_timer_interrupt.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_callback_timer_locked.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_callback_timer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_char_traits.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_checksum.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_circular_buffer_external_buffer.cpp #573 more comfortable circular_buffer_ext construction 2022-07-28 15:55:38 +01:00
test_circular_buffer.cpp Added repair() to etl::circular_buffer 2023-02-19 10:45:19 +00:00
test_circular_iterator.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_compare.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_constant.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_container.cpp Fixed Address Sanitizer issues 2023-04-28 10:32:58 +01:00
test_correlation.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_covariance.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_ccitt.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_cdma2000.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_darc.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_dvbs2.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_ebu.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_icode.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_itu.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_maxim.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_rohc.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc8_wcdma.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_a.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_arc.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_aug_ccitt.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_buypass.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_ccitt.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_cdma2000.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_dds110.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_dectr.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_dectx.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_dnp.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_en13757.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_genibus.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_kermit.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_m17.cpp Added M17 CRC 2023-02-12 11:44:59 +01:00
test_crc16_maxim.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_mcrf4xx.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_modbus.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_profibus.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_riello.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_t10dif.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_teledisk.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_tms37157.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_usb.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_x25.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16_xmodem.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc16.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_bzip2.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_c.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_d.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_jamcrc.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_mpeg2.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_posix.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_q.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32_xfer.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc32.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc64_ecma.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_crc.cpp literal with suffix (#416) 2021-09-02 13:03:38 +01:00
test_cyclic_value.cpp Change iterator constructor parameter from reference to pointer 2023-01-26 13:30:22 +00:00
test_debounce.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_delegate_cpp03.cpp Added clear() to delegate 2023-07-04 11:45:09 +01:00
test_delegate_service_compile_time.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_delegate_service_cpp03.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
test_delegate_service.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
test_delegate.cpp Added clear() to delegate 2023-07-04 11:45:09 +01:00
test_deque.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_endian.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_enum_type.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
test_error_handler.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_etl_traits.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_exception.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_expected.cpp Changed assignment from etl::unexpected to use variant::emplace instead of direct assignment 2023-08-03 09:54:31 +01:00
test_fixed_iterator.cpp Fix 'maybe-uninitialized' g++ error on macos (#600) 2022-10-19 12:20:42 +01:00
test_fixed_sized_memory_block_allocator.cpp Array bounds and maybe-uninitialized warning fixes 2023-03-02 13:15:42 +00:00
test_flags.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_flat_map.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_flat_multimap.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_flat_multiset.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_flat_set.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_fnv_1.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_format_spec.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_forward_list_shared_pool.cpp Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
test_forward_list.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_fsm.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_function.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_functional.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_gamma.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_hash.cpp [bug] Special case check for hashing -0.0 (#605) 2022-10-19 12:22:51 +01:00
test_hfsm_recurse_to_inner_state_on_start.cpp Fixed selection of std/etl size() 2023-05-05 12:43:54 +01:00
test_hfsm.cpp Added ETL_OR_STD17 macro for the namespace for size() 2023-04-23 18:58:30 +01:00
test_histogram.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_indirect_vector_external_buffer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_indirect_vector.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_instance_count.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_integral_limits.cpp Added ETL_OR_STD17 macro for the namespace for size() 2023-04-23 18:58:30 +01:00
test_intrusive_forward_list.cpp Fixed address sanitizer issues in unit tests 2023-07-04 11:45:11 +01:00
test_intrusive_links.cpp Updated intrusive links 2023-07-04 11:45:10 +01:00
test_intrusive_list.cpp Fixed address sanitizer issues in unit tests 2023-07-04 11:45:11 +01:00
test_intrusive_queue.cpp Updated intrusive links 2023-07-04 11:45:10 +01:00
test_intrusive_stack.cpp Updated intrusive links 2023-07-04 11:45:10 +01:00
test_invert.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_io_port.cpp Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
test_iterator.cpp Fixed Address Sanitizer issues 2023-04-28 10:32:58 +01:00
test_jenkins.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_largest.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_limiter.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_limits.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_list_shared_pool.cpp Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
test_list.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_macros.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_make_string.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_map.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_maths.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_mean.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_mem_cast_ptr.cpp Re-enable memcast tests 2023-06-04 15:41:29 +01:00
test_mem_cast.cpp Fix mem_cast_tests 2023-07-04 11:41:00 +01:00
test_mem_type.cpp Further updates to mem_type 2021-06-29 20:02:49 +01:00
test_memory.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_message_broker.cpp Added destination_router_id parameter overrides to receive() virtuaL functions 2023-01-29 20:46:41 +01:00
test_message_bus.cpp Minor changes 2022-08-02 11:42:57 +01:00
test_message_packet.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_message_router_registry.cpp Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
test_message_router.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_message_timer_atomic.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_message_timer_interrupt.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_message_timer_locked.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_message_timer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_multi_array.cpp Fix tests after addition of ETL_NODISCARD 2023-07-04 11:45:10 +01:00
test_multi_range.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_multi_span.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_multi_vector.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_multimap.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_multiset.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_murmur3.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_nth_type.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_numeric.cpp Conversion of static to C++14 compatinility 2023-04-27 09:28:37 +01:00
test_observer.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_optional.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_overload.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_packet.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_parameter_pack.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_parameter_type.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_parity_checksum.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_pearson.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_poly_span_dynamic_extent.cpp Added ETL_OR_STD17 macro for the namespace for size() 2023-04-23 18:58:30 +01:00
test_poly_span_fixed_extent.cpp Added ETL_OR_STD17 macro for the namespace for size() 2023-04-23 18:58:30 +01:00
test_pool_external_buffer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_pool.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_priority_queue.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_pseudo_moving_average.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_quantize.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_queue_lockable_small.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_lockable.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_memory_model_small.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_mpmc_mutex_small.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_mpmc_mutex.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_spsc_atomic_small.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_spsc_atomic.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_spsc_isr_small.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_spsc_isr.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_spsc_locked_small.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue_spsc_locked.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_queue.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_random.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_reference_flat_map.cpp Removed [] operator 2023-05-11 09:50:05 +01:00
test_reference_flat_multimap.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_reference_flat_multiset.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_reference_flat_set.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_rescale.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_result.cpp Work-In-Progress for full implementation of etl::expected 2023-02-06 20:01:34 +01:00
test_rms.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_scaled_rounding.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_set.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_shared_message.cpp Updated comment 2023-02-02 19:37:33 +01:00
test_singleton.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_smallest.cpp Added ETL_OR_STD17 macro for the namespace for size() 2023-04-23 18:58:30 +01:00
test_span_dynamic_extent.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_span_fixed_extent.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_stack.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_standard_deviation.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_state_chart_compile_time_with_data_parameter.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_state_chart_compile_time.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_state_chart_with_data_parameter.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_state_chart_with_rvalue_data_parameter.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_state_chart.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_static_assert.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_char_external_buffer.cpp Made unit test suite names unique 2023-08-09 08:57:50 +01:00
test_string_char.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_stream_u16.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_string_stream_u32.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_string_stream_wchar_t.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_string_stream.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_string_u16_external_buffer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_u16.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_u32_external_buffer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_u32.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_utilities_std_u16.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_string_utilities_std_u32.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_string_utilities_std_wchar_t.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_string_utilities_std.cpp Fix test array sizes 2023-04-02 11:06:43 +01:00
test_string_utilities_u16.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_string_utilities_u32.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_string_utilities_wchar_t.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_string_utilities.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_string_view.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_string_wchar_t_external_buffer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_string_wchar_t.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_successor.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_task_scheduler.cpp Added ETL_OR_STD17 macro for the namespace for size() 2023-04-23 18:58:30 +01:00
test_threshold.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_to_arithmetic_u16.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_to_arithmetic_u32.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_to_arithmetic_wchar_t.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_to_arithmetic.cpp C++11 unit tests - Work in progress 2023-04-30 11:06:23 +01:00
test_to_string.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_to_u16string.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_to_u32string.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_to_wstring.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_type_def.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_type_lookup.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_type_select.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_type_traits.cpp Work in progress 2023-04-02 11:06:42 +01:00
test_unaligned_type_constexpr.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
test_unaligned_type.cpp Storage type to unsigned char 2022-10-19 12:20:43 +01:00
test_unordered_map.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_unordered_multimap.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_unordered_multiset.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_unordered_set.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_user_type.cpp style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
test_utility.cpp Added etl::forward_like 2023-07-15 09:51:08 +01:00
test_variance.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_variant_legacy.cpp Eradicated all GCC and clang warnings 2022-07-27 10:42:03 +01:00
test_variant_pool_external_buffer.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_variant_pool.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_variant_variadic.cpp Refactored visitor and variant to allow const variants and fix passing references to visitors 2023-07-04 11:41:00 +01:00
test_vector_external_buffer.cpp Array bounds and maybe-uninitialized warning fixes 2023-03-02 13:15:42 +00:00
test_vector_non_trivial.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_vector_pointer_external_buffer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_vector_pointer.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_vector.cpp add static assert with auto message (#740) 2024-02-22 19:11:38 +00:00
test_visitor.cpp Refactored visitor and variant to allow const variants and fix passing references to visitors 2023-07-04 11:41:00 +01:00
test_xor_checksum.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
test_xor_rotate_checksum.cpp Updated copyright notice 2022-06-10 21:45:37 +01:00
unit_test_framework.h style: add missing new line at end of file (#734) 2023-07-18 08:12:53 +01:00
words.txt New hash & checksum algorithms 2015-08-19 21:00:53 +01:00