Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed May 28, 2024
1 parent d09a8ce commit a1dc1bc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
25 changes: 25 additions & 0 deletions bin/run-local.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

set -xe

# TODO from the cmd line
procs="cpp-rapidyamlengine.event cpp-rapidyaml.event"

ROOTDIR=$(dirname $(cd $(dirname $0) ; pwd))

cd $ROOTDIR
export PERL5LIB=$PWD/local/lib/perl5

make data
make matrix
make yaml-test-suite

cp ../yaml-runtimes/list.yaml .
./bin/expected
for proc in $procs ; do
./bin/run-framework-tests --view $proc
./bin/compare-framework-tests --view $proc
done

./bin/create-matrix
./bin/highlight
3 changes: 3 additions & 0 deletions ni.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
c-libfyaml.event: []
c-libyaml.event: [ empty-key ]
cpp-rapidyaml.event: [ complex-key, duplicate-key ]
cpp-rapidyamlengine.event: [ duplicate-key ]
dotnet-yamldotnet.json: [ local-tag, unknown-tag ]
java-snakeyaml.event: [ empty-key ]
java-snakeyaml.json: [ empty-key, local-tag, unknown-tag ]
Expand Down

0 comments on commit a1dc1bc

Please sign in to comment.