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_opts.sh
rocky 90b7edfd26 Slightly more descriptive and accurate error messages when regression tests
fail. Also if no Joliet support, one test is skipped.
2005-01-29 14:50:34 +00:00

34 lines
734 B
Bash
Executable File

#!/bin/sh
#$Id: check_opts.sh,v 1.8 2005/01/29 14:50:34 rocky Exp $
# Check cd-info options
if test -z "$srcdir" ; then
srcdir=`pwd`
fi
. ${srcdir}/check_common_fn
if test ! -x ../src/cd-info ; then
exit 77
fi
BASE=`basename $0 .sh`
fname=isofs-m1
i=0
for opt in '-T' '--no-tracks' '-A' '--no-analyze' '-I' '--no-ioctl' \
'-q' '--quiet' ; do
testname=${BASE}$i
opts="--no-device-info --cue-file ${srcdir}/${fname}.cue $opt --quiet"
test_cdinfo "$opts" ${testname}.dump ${srcdir}/${testname}.right
RC=$?
check_result $RC "cd-info option test $opt" "../src/cd-info $opts"
i=`expr $i + 1`
done
exit $RC
#;;; Local Variables: ***
#;;; mode:shell-script ***
#;;; eval: (sh-set-shell "bash") ***
#;;; End: ***