1 # RUN: yaml-bench -canonical %s | FileCheck %s
2 # CHECK: ? !!str "literal_strip"
3 # CHECK: : !!str "Hello\n\n\nworld\non\nmultiple \n\n\nlines\n\nfoo bar"
4 # CHECK: ? !!str "literal_clip"
5 # CHECK: : !!str "Hello\n\n\nworld\non\nmultiple \n\n\nlines\n\nfoo bar\n"
6 # CHECK: ? !!str "literal_keep"
7 # CHECK: : !!str "Hello\n\n\nworld\non\nmultiple \n\n\nlines\n\nfoo bar\n\n\n\n"
8 # CHECK: ? !!str "folded_strip"
9 # CHECK: : !!str "Hello\n\nworld on multiple \n\nlines\nfoo bar"
10 # CHECK: ? !!str "folded_clip"
11 # CHECK: : !!str "Hello\n\nworld on multiple \n\nlines\nfoo bar\n"
12 # CHECK: ? !!str "folded_keep"
13 # CHECK: : !!str "Hello\n\nworld on multiple \n\nlines\nfoo bar\n\n\n"