#!/bin/sh

# This script it top level script for lsb libpng test suites.
# The test suite has regression tests for a set of images in directory
# ./imageDir
# The output journal file produce by this script is journal.libxml2

if [ ! -f ./runtest ]; then
    echo "libpng regression test binary is missing, terminating!"
    echo ""
    exit 1
else
    echo "Starting libpng regression test..."
    ./runtest
fi

