#!/bin/sh

# This is $Revision$

INSTALLPATH=/usr/bin/bin/

if [ "$INSTALLPATH" != "" ]; then
    PATH=$INSTALLPATH:$PATH
fi

echo "Running tests"
libchk > report.libchk 2>> libchk.log

echo >> report.libchk
echo  '----------------------------------------------------------------------' >> report.libchk
echo >> report.libchk

machine_info >> report.libchk 2>> libchk.log

echo "Finished."
echo "A report has been created in a file named report.libchk"
echo "An error log has been placed in libchk.log"
echo 
