]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/libucl/tests/schema.test
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / libucl / tests / schema.test
1 #!/bin/sh
2
3 PROG=${TEST_BINARY_DIR}/test_schema
4 rm /tmp/_ucl_test_schema.out ||true
5 for i in ${TEST_DIR}/schema/*.json ; do
6         _name=`basename $i`
7         printf "running schema test suite $_name... "
8         $PROG >> /tmp/_ucl_test_schema.out < $i && ( echo "OK" ) || ( echo "Fail" )
9 done