summaryrefslogtreecommitdiff
path: root/tests/run-emitter-test-suite.c
Commit message (Collapse)AuthorAgeFilesLines
* Add -h and --flow (on|off|keep) to run-*-test-suite (#187)Tina Müller (tinita)2020-06-011-6/+33
| | | | | | | | | | | | | | | | With `--flow (keep|on)` run-parser-test-suite will output: +MAP {} +SEQ [] run-emitter-test-suite will then emit flow style collections if requested: echo 'foo: [bar, {x: y}]' | ./tests/run-parser-test-suite | ./tests/run-emitter-test-suite echo 'foo: [bar, {x: y}]' | ./tests/run-parser-test-suite \ --flow keep | ./tests/run-emitter-test-suite --flow keep Also: add that yaml_private.h include again that I had thrown out. Needed for printing directives. Wonder if there is a way to create a directive without using the private api.
* Remove unnecessary include and mallocTina Müller2020-05-211-2/+0
|
* Allow emitting 1.2 directiveTina Müller2020-04-191-8/+42
| | | | | | | | Before `1.1` was hardcoded in the emitter. * Also add --directive option to run-emitter-test-suite Allows to easily test how output looks like if %YAML directives are output.
* Remove stdbool0.2.2-pre2Tina Müller2019-02-281-5/+4
| | | | Might not be available everywhere
* Rewrite make test-suiteTina Müller2017-12-021-0/+232
No recursive make anymore Remove MY_LD_LIBRARY_PATH and friends This is now done by the wrapper script Remove LIBYAML_DIR variable not needed anymore Merge ReadMe.md files to one