Michael J. Spencer | 22120c4 | 2012-04-03 23:09:22 +0000 | [diff] [blame] | 1 | # RUN: yaml-bench -canonical %s |
2 | |||||
3 | unicode: "Sosa did fine.\u263A" | ||||
4 | control: "\b1998\t1999\t2000\n" | ||||
5 | hexesc: "\x13\x10 is \r\n" | ||||
6 | |||||
7 | single: '"Howdy!" he cried.' | ||||
8 | quoted: ' # not a ''comment''.' | ||||
9 | tie-fighter: '|\-*-/|' | ||||
10 | |||||
11 | # CHECK: !!str "Sosa did fine.\u263A" | ||||
12 | # CHECK: !!str "\b1998\t1999\t2000\n" | ||||
13 | # CHECK: !!str "\x13\x10 is \r\n" | ||||
14 | # CHECK: !!str "\"Howdy!\" he cried." | ||||
15 | # CHECK: !!str " # not a 'comment'." | ||||
16 | # CHECK: !!str "|\\-*-/|" |