annotate test.sh @ 103:12e43b583554

Quick test script, & rename examples to match
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 14 Mar 2016 13:16:15 +0000
parents
children a5eb5ef2e92d
rev   line source
c@103 1 #!/bin/bash
c@103 2
c@103 3 set -eu
c@103 4
c@103 5 for ex in examples/*.json ; do
c@103 6 echo "Checking $ex..." 1>&2
c@103 7 jsonschema -i "$ex" schema/$(basename "$ex")
c@103 8 done
c@103 9