added vendor

This commit is contained in:
kolaente 2018-10-28 17:24:10 +01:00
parent 738c22b5f9
commit 2556ef7624
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
484 changed files with 140231 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/bin/bash
set -eu -o pipefail
dir=$(git rev-parse --show-toplevel)
scratch=$(mktemp -d -t tmp.XXXXXXXXXX)
function finish {
rm -rf "$scratch"
}
trap finish EXIT SIGHUP SIGINT SIGTERM
cd "$scratch"
git clone https://github.com/json-schema-org/JSON-Schema-Test-Suite Suite
cp -r Suite/tests/draft4/* "$dir/fixtures/jsonschema_suite"
cp -a Suite/remotes "$dir/fixtures/jsonschema_suite"