Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / YAMLParser / spec-02-17.test
blobe7b0147a0fcd89fa384f5ef359f71085949b2e3e
1 # RUN: yaml-bench -canonical %s | FileCheck %s
3 unicode: "Sosa did fine.\u263A"
4 control: "\b1998\t1999\t2000\n"
5 hexesc:  "\x13\x10 is \r\n"
7 single: '"Howdy!" he cried.'
8 quoted: ' # not a ''comment''.'
9 tie-fighter: '|\-*-/|'
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 "|\\-*-/|"