All public includes are included via #include <cdio/....h> rather than #include "....h" (removed -I $top_srcdir/include/cdio)
40 lines
845 B
Bash
Executable File
40 lines
845 B
Bash
Executable File
#!/bin/sh
|
|
#$Id: check_nrg.sh,v 1.1 2003/04/22 12:09:09 rocky Exp $
|
|
|
|
if test -z $srcdir ; then
|
|
srcdir=`pwd`
|
|
fi
|
|
|
|
. ${srcdir}/check_common_fn
|
|
|
|
BASE=`basename $0 .sh`
|
|
nrg_file=${srcdir}/monvoisin.nrg
|
|
|
|
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'
|
|
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
|
|
|
|
#;;; Local Variables: ***
|
|
#;;; mode:shell-script ***
|
|
#;;; eval: (sh-set-shell "bash") ***
|
|
#;;; End: ***
|