This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
libcdio-osx/test/check_nrg.sh

40 lines
845 B
Bash
Raw Normal View History

2003-03-24 19:01:09 +00:00
#!/bin/sh
#$Id: check_nrg.sh,v 1.1 2003/04/22 12:09:09 rocky Exp $
2003-03-24 19:01:09 +00:00
if test -z $srcdir ; then
srcdir=`pwd`
fi
. ${srcdir}/check_common_fn
BASE=`basename $0 .sh`
nrg_file=${srcdir}/monvoisin.nrg
2003-03-24 19:01:09 +00:00
if test -f $nrg_file ; then
test_cdinfo "--nrg-file $nrg_file" \
monvoisin.dump ${srcdir}/monvoisin.right
RC=$?
check_result $RC 'cdinfo NRG test 1'
2003-04-22 01:32:39 +00:00
else
echo "Don't see NRG file ${nrg_file}. Test skipped."
exit $SKIP_TEST_EXITCODE
fi
nrg_file=${srcdir}/svcdgs.nrg
if test -f $nrg_file ; then
test_cdinfo "--nrg-file $nrg_file" \
svcdgs.dump ${srcdir}/svcdgs.right
RC=$?
check_result $RC 'cdinfo NRG test 2'
exit $RC
else
echo "Don't see NRG file ${nrg_file}. Test skipped."
exit $SKIP_TEST_EXITCODE
fi
2003-03-24 19:01:09 +00:00
#;;; Local Variables: ***
#;;; mode:shell-script ***
#;;; eval: (sh-set-shell "bash") ***
#;;; End: ***