view tests/test-supportprogs/test-supportprogs.sh @ 366:9f7297c47850

Update plugin handling to follow the smart pointers used in the svcore library. This is awkward in our context, and the outcome isn't a very nice one - but it does look as if we had the potential for use-after-free in cases where a plugin was both used "bare" and wrapped in an auto-deleting adapter; those should be fixed now
author Chris Cannam
date Thu, 23 Apr 2020 15:51:55 +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