summaryrefslogtreecommitdiffhomepage
path: root/tests/03_bugs/06_lexer_escape_at_boundary
diff options
context:
space:
mode:
authorPetr Štetiar <ynezz@true.cz>2021-03-19 16:54:55 +0100
committerJo-Philipp Wich <jo@mein.io>2021-04-23 00:42:30 +0200
commit2b59097c3f61fa901e91ac4cea48940760439578 (patch)
tree958d739a78f959dfcd55b3d76e6e970ca53fa1c6 /tests/03_bugs/06_lexer_escape_at_boundary
parent80393611fb6634abcc0da1dee2da7c4418dbde8d (diff)
tests: create custom tests from current tests cases
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'tests/03_bugs/06_lexer_escape_at_boundary')
-rw-r--r--tests/03_bugs/06_lexer_escape_at_boundary12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/03_bugs/06_lexer_escape_at_boundary b/tests/03_bugs/06_lexer_escape_at_boundary
deleted file mode 100644
index e80b0a1..0000000
--- a/tests/03_bugs/06_lexer_escape_at_boundary
+++ /dev/null
@@ -1,12 +0,0 @@
-When the lexer processed a backslash introducing a string escape directly
-at the buffer boundary, the backslash was incorrectly retained.
-
--- Testcase --
-{%
- print("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl\n");
-%}
--- End --
-
--- Expect stdout --
-abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl
--- End --