summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2019-01-26tests: fix evaluation tests on FreeBSDSébastien Helleu
The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence).
2019-01-26tests: fix UTF-8 tests on FreeBSDSébastien Helleu
Tests for size on screen are made on U+2EE9 (CJK Radical Simplified Yellow) instead of U+24B62 (CJK Unified Ideograph-24B62) which returns a length of 1 on FreeBSD and 2 on Linux.
2019-01-20tests: fix link of tests on GNU Hurd and FreeBSDSébastien Helleu
2019-01-20tests: add missing include of stdio.hSébastien Helleu
2019-01-20tests: add tests on IRC color functionsSébastien Helleu
Functions tested: - irc_color_decode - irc_color_encode - irc_color_decode_ansi
2019-01-13tests: add tests on function irc_protocol_parse_timeSébastien Helleu
2019-01-11tests: add tests on function irc_config_check_autojoinSébastien Helleu
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-11-04tests: add missing file test-secure.cpp in autotoolsSébastien Helleu
2018-11-04api: add functions string_base_{encode,decode}, remove functions ↵Sébastien Helleu
string_{encode,decode}_base64
2018-11-02api: return integer in function string_encode_base16Sébastien Helleu
2018-11-02api: return integer in function string_encode_base64Sébastien Helleu
2018-11-02tests: add tests on functions secure_encrypt_data and secure_decrypt_dataSébastien Helleu
2018-11-02core: add support of TOTP generation/validation (Time-based One-Time Password)Sébastien Helleu
2018-10-09core: add repeat of string in evaluation of expressions with ↵Sébastien Helleu
"repeat:count,string" (closes #958)
2018-10-08core: fix evaluation of nested ternary operators (closes #1263)Sébastien Helleu
2018-09-09core: add missing slash at the end of weechat.org URLsSébastien Helleu
2018-09-01core: fix copyright datesSébastien Helleu
2018-08-18core: fix evaluation of condition when the left operand is an empty stringSébastien Helleu
2018-08-17core: add option "-P" (or "--plugins") to customize the plugins to load at ↵Sébastien Helleu
startup If given, the option replaces the option weechat.plugin.autoload.
2018-08-16core: fix string evaluation with regex replacement when the string is emptySébastien Helleu
2018-08-16tests: add tests on modifier hookSébastien Helleu
2018-08-15tests: properly initialize variable argc before tests on function string_splitSébastien Helleu
2018-08-15tests: add test on function string_split with a string having only delimitersSébastien Helleu
2018-08-12core: fix check of tags in linesSébastien Helleu
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
2018-07-13tests: fix compiler warnings on calls to snprintfSébastien Helleu
2018-06-02core: add reverse of string in evaluation of expressions with "rev:" (closes ↵Sébastien Helleu
#1200)
2018-06-02tests: add missing tests on function string_cutSébastien Helleu
2018-06-02core: count number of chars instead of bytes for suffix in function string_cutSébastien Helleu
2018-06-02tests: fix test of function utf8_strlen_screen on Han char (U+24B62)Sébastien Helleu
2018-05-20Merge remote-tracking branch 'origin/pr/623' into irc-3.2-capSébastien Helleu
2018-04-17tests: add tests on eval_expression() with different prefix/suffixSébastien Helleu
2018-04-13tests: turn off memory leak detection only when testing javascript APISébastien Helleu
2018-04-13tests: fix typo in language nameSébastien Helleu
2018-04-12tests: add tests on infolistsSébastien Helleu
2018-04-11tests: fix AST return in TCLSébastien Helleu
2018-04-11tests: fix AST return in PHPSébastien Helleu
2018-04-11tests: fix AST return in PerlSébastien Helleu
2018-04-07api: add function string_format_size in scripting APISébastien Helleu
2018-03-16tests: fix name of target in dependenciesSébastien Helleu
2018-03-11core: add binary weechat-headless to run WeeChat without interface (closes ↵Sébastien Helleu
#1120) The optional command line option "--daemon" runs WeeChat like a daemon (fork, new process group, file descriptors closed).
2018-03-09tests: fix typo in fake ncurses lib headerSébastien Helleu
2018-01-07tests: fix tests on function string_regex_flagsSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-10-28tests: add tests on command/completion hooks scripting API functionsSébastien Helleu
2017-10-27tests: add tests on prefix and color scripting API functionsSébastien Helleu
2017-10-24tests: add tests on key_bind and key_unbind scripting API functionsSébastien Helleu
2017-10-24tests: fix AST binop in Perl and LuaSébastien Helleu
2017-10-24tests: fix Tcl assignmentSébastien Helleu