Skip to content

Commit

Permalink
Test name updates
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wellbelove committed Sep 25, 2023
1 parent cf15b92 commit fd920fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_multi_vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions test/test_vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion test/test_vector_pointer_external_buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fd920fc

Please sign in to comment.