Test name updates

This commit is contained in:
John Wellbelove 2023-09-25 16:55:19 +01:00
parent cf15b92818
commit fd920fcc7e
3 changed files with 4 additions and 2 deletions

View File

@ -64,7 +64,7 @@ namespace
Compare_Data compare_data = { { { 0, 1, 2 }, { 3, 4, 5 }, { 6, 7, 8 }, { 9, 10, 11 } } };
SUITE(test_vector)
SUITE(test_multi_vector_external_buffer)
{
//*************************************************************************
TEST(test_constructor)

View File

@ -1436,12 +1436,14 @@ namespace
}
//*************************************************************************
#include "etl/private/diagnostic_uninitialized_push.h"
TEST(test_three_parameter_insert_same_type_not_iterator)
{
// No compilation error.
etl::vector<int, 10> v;
v.insert(v.end(), 5, 5);
}
#include "etl/private/diagnostic_pop.h"
//*************************************************************************
TEST(remove)

View File

@ -47,7 +47,7 @@ namespace
int* buffer4[SIZE];
int* buffer5[SIZE];
SUITE(test_vector_pointer)
SUITE(test_vector_pointer_external_buffer)
{
typedef etl::vector_ext<int*> Data;
typedef etl::vector_ext<const int*> CData;