diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-10-11 14:31:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-11 14:31:00 +0200 |
commit | 1f51da22e4d56ae0f0bc3ae75817e99a91038226 (patch) | |
tree | aca99ba07ec025e752b952307cf91e6ebd0a9ab3 /api_test | |
parent | e89187b0604eff3a8251a902bfbbdb3cd7ff415b (diff) | |
parent | 920cbd071a85ffabefdb706c257b7c49620fc896 (diff) |
Merge pull request #160 from kivikakk/kivikakk/fix-nul-lf-sequence
Fix NUL-LF sequence lex
Diffstat (limited to 'api_test')
-rw-r--r-- | api_test/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/api_test/main.c b/api_test/main.c index d493e00..d87e446 100644 --- a/api_test/main.c +++ b/api_test/main.c @@ -732,6 +732,13 @@ static void utf8(test_batch_runner *runner) { string_with_null, sizeof(string_with_null) - 1, CMARK_OPT_DEFAULT); STR_EQ(runner, html, "<p>((((" UTF8_REPL "))))</p>\n", "utf8 with U+0000"); free(html); + + // Test NUL followed by newline + static const char string_with_nul_lf[] = "```\n\0\n```\n"; + html = cmark_markdown_to_html( + string_with_nul_lf, sizeof(string_with_nul_lf) - 1, CMARK_OPT_DEFAULT); + STR_EQ(runner, html, "<pre><code>\xef\xbf\xbd\n</code></pre>\n", "utf8 with \\0\\n"); + free(html); } static void test_char(test_batch_runner *runner, int valid, const char *utf8, |