refactor(kernel/std): ♻️ rename test function to test_stl_shared_ptr

This commit is contained in:
EnderIce2 2025-05-10 06:03:58 +00:00
parent fa2e37f603
commit 21db83b943
Signed by: enderice2
GPG Key ID: FEB6B8A8507BA62E
2 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,7 @@ struct Deleter
}
};
void test_shared_ptr_bitset()
void test_stl_shared_ptr()
{
debug("std::shared_ptr ...");

View File

@ -27,6 +27,7 @@ void test_stl_string();
void test_stl_unordered_map() {}
void test_stl_future();
void test_stl_array();
void test_stl_shared_ptr();
void Test_stl()
{
@ -40,6 +41,7 @@ void Test_stl()
test_stl_unordered_map();
test_stl_future();
test_stl_array();
test_stl_shared_ptr();
}
#endif // DEBUG