X-Git-Url: http://andersk.mit.edu/gitweb/libyaml.git/blobdiff_plain/7b67c28a39295727791effd8541fc319b00e2c84..c9878e19bdd9e6a0af55c1b420d4e941b28ed6c6:/tests/run-test-suite/test/libyaml-parser.t diff --git a/tests/run-test-suite/test/libyaml-parser.t b/tests/run-test-suite/test/libyaml-parser.t index c891df9..1c3d0c4 100755 --- a/tests/run-test-suite/test/libyaml-parser.t +++ b/tests/run-test-suite/test/libyaml-parser.t @@ -5,7 +5,7 @@ set -e if [[ $# -gt 0 ]]; then ids=("$@") else - ids=(`find data | grep '/===$' | cut -d/ -f2 | sort`) + ids=($(cut -d: -f1 < test/libyaml-parser.list)) fi count=0 @@ -13,10 +13,6 @@ for id in "${ids[@]}"; do dir="data/$id" label="$id: $(< $dir/===)" [[ -e "$dir/in.yaml" ]] || continue - if grep "$id" test/libyaml-parser.skip >/dev/null; then - echo "ok $((++count)) # SKIP $label" - continue - fi ./src/libyaml-parser "$dir/in.yaml" > /tmp/test.out || { ( cat "$dir/in.yaml"