1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

core: fix check of tags in lines

All changes:
- fix check of tags in lines: check lines without tags, fix check of tags with
  negation ("!tag")
- add string functions string_split_tags and string_free_split_tags
- add tests on function gui_line_match_tags
This commit is contained in:
Sébastien Helleu
2018-08-07 21:50:04 +02:00
parent d699ae89aa
commit 12a6f74ec0
23 changed files with 382 additions and 275 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ extern "C"
LONGS_EQUAL(__result_index, index); \
LONGS_EQUAL(__result_index_insert, index_insert);
TEST_GROUP(Arraylist)
TEST_GROUP(CoreArraylist)
{
};
@@ -477,7 +477,7 @@ test_arraylist (int initial_size, int sorted, int allow_duplicates)
* arraylist_free
*/
TEST(Arraylist, New)
TEST(CoreArraylist, New)
{
int initial_size, sorted, allow_duplicates;