summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Moretest/tscanf.ml13
1 files changed, 12 insertions, 1 deletions
diff --git a/test/Moretest/tscanf.ml b/test/Moretest/tscanf.ml
index cf8288457..6498ebb5e 100644
--- a/test/Moretest/tscanf.ml
+++ b/test/Moretest/tscanf.ml
@@ -228,7 +228,18 @@ let test9 () =
test_S "poi" &&
test_S "a\"b" &&
test_S "a\nb" &&
- test_S "a\010b";;
+ test_S "a\010b" &&
+ test_S "a\\\n\
+ b \\\n\
+ c\010\\\n\
+ b" &&
+ test_S "a\\\n\
+ \\\n\
+ \\\n\
+ b \\\n\
+ c\010\\\n\
+ b"
+;;
test (test9 ());;
let unit_S = unit "%S";;