test(kernel): add tests for std::foward_list and std::is_sorted

This commit is contained in:
2025-06-10 02:02:58 +00:00
parent 6a6c3bfc67
commit f7177f92cf
3 changed files with 128 additions and 0 deletions

View File

@ -26,6 +26,8 @@ void test_stl_bitset();
void test_stl_string();
void test_stl_unordered_map() {}
void test_stl_future();
void test_stl_forward_list();
void test_stl_is_sorted();
void test_stl_array();
void test_stl_shared_ptr();
void test_stl_set();
@ -42,6 +44,8 @@ void Test_stl()
test_stl_string();
test_stl_unordered_map();
test_stl_future();
test_stl_forward_list();
test_stl_is_sorted();
test_stl_array();
test_stl_shared_ptr();
test_stl_set();