view tests/test-supportprogs/test-supportprogs.sh @ 399:a3912193ce69 tip

Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author Chris Cannam
date Thu, 27 Aug 2020 15:57:37 +0100
parents 8233a26705ed
children
line wrap: on
line source
#!/bin/bash

fail() {
    echo "Test failed: $1"
    exit 1
}

xmllint --version 2>/dev/null || \
    fail "Can't find required xmllint program (from libxml2 distribution)"

rapper --version >/dev/null || \
    fail "Can't find required rapper program (from raptor/redland distribution)"

iconv --version >/dev/null || \
    fail "Can't find required iconv program (usually associated with glibc or libiconv)"

echo '{}' | json_verify >/dev/null || \
    fail "Can't find required json_verify program (from yajl distribution), or it doesn't seem to work"

echo '{}' | json_reformat >/dev/null || \
    fail "Can't find required json_reformat program (from yajl distribution), or it doesn't seem to work"

exit 0