diff options
author | 2023-05-10 16:01:02 +0200 | |
---|---|---|
committer | 2023-05-10 16:01:02 +0200 | |
commit | ba96d5e14017bd853f929e6bb9799d3a6ad9e813 (patch) | |
tree | bc351c0f8fff1d9a1152c77ad53be423e45f1194 /test | |
parent | 1d51c28d90a8c212dd9cf59191194855258e474b (diff) | |
download | utils-ba96d5e14017bd853f929e6bb9799d3a6ad9e813.tar.gz utils-ba96d5e14017bd853f929e6bb9799d3a6ad9e813.zip |
Remove `map` tests
Diffstat (limited to 'test')
-rw-r--r-- | test/main.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/main.c b/test/main.c index dace8e7..9d94b0a 100644 --- a/test/main.c +++ b/test/main.c @@ -12,15 +12,15 @@ void test_list4(); void test_list5(); void test_list6(); -void -test_map() -{ - map_t map = cmap_create(); - cmap_put(&map, "hi", "test"); - cmap_put(&map, "hello", "test"); - cmap_put(&map, "good", "test"); - cmap_put(&map, "best", "test"); -} +//void +//test_map() +//{ +// map_t map = cmap_create(); +// cmap_put(&map, "hi", "test"); +// cmap_put(&map, "hello", "test"); +// cmap_put(&map, "good", "test"); +// cmap_put(&map, "best", "test"); +//} int main(int argc, char** argv) { @@ -31,7 +31,7 @@ int main(int argc, char** argv) test_list5(); test_list6(); - test_map(); +// test_map(); return 0; } |