Skip to content
Snippets Groups Projects
Select Git revision
  • master-libyaml-test-suite
  • branch/default default protected
  • release/0.2.5
  • master
  • run-test-suite-2
  • master-2
  • release/test
  • testing
  • run-test-suite
  • perlpunk/fix-tag-chars
  • dist
  • packaging
  • release/0.2.4
  • run-test-suite-code
  • release/0.2.3
  • perlpunk/anchor-chars
  • release-0.1.8
  • run-test-suite-list
  • canonical-code-style
  • issue/10
20 results

yaml.h

Blame
    • Tina Müller (tinita)'s avatar
      f1e5f62e0f2b
      Emitter: Output space after an alias mapping key (#185) · f1e5f62e0f2b
      Tina Müller (tinita) authored
      Before:
          a: &b x
          *b: c
      
      Now:
          a: &b x
          *b : c
      
      Passing tests:
      * 26DV: Whitespace around colon in mappings
      * E76Z: Aliases in Implicit Block Mapping
      * X38W: Aliases in Flow Objects
      
      Test manually because `make test-suite` will overwrite changes in the skiplist:
      
          ./tests/run-parser-test-suite tests/run-test-suite/data/26DV/in.yaml | ./tests/run-emitter-test-suite
          ./tests/run-parser-test-suite tests/run-test-suite/data/E76Z/in.yaml | ./tests/run-emitter-test-suite
          ./tests/run-parser-test-suite tests/run-test-suite/data/X38W/in.yaml | ./tests/run-emitter-test-suite
      
      Or edit tests/run-test-suite/test/blacklist/libyaml-emitter and do:
      
          (cd tests/run-test-suite; prove -lv test)
      
      Also I added some newlines to yaml.h to help identifying states by number.
      f1e5f62e0f2b
      History
      Emitter: Output space after an alias mapping key (#185)
      Tina Müller (tinita) authored
      Before:
          a: &b x
          *b: c
      
      Now:
          a: &b x
          *b : c
      
      Passing tests:
      * 26DV: Whitespace around colon in mappings
      * E76Z: Aliases in Implicit Block Mapping
      * X38W: Aliases in Flow Objects
      
      Test manually because `make test-suite` will overwrite changes in the skiplist:
      
          ./tests/run-parser-test-suite tests/run-test-suite/data/26DV/in.yaml | ./tests/run-emitter-test-suite
          ./tests/run-parser-test-suite tests/run-test-suite/data/E76Z/in.yaml | ./tests/run-emitter-test-suite
          ./tests/run-parser-test-suite tests/run-test-suite/data/X38W/in.yaml | ./tests/run-emitter-test-suite
      
      Or edit tests/run-test-suite/test/blacklist/libyaml-emitter and do:
      
          (cd tests/run-test-suite; prove -lv test)
      
      Also I added some newlines to yaml.h to help identifying states by number.