From 70ffa73191c5e8adbc47d35e1ddcee1986b2ab8c Mon Sep 17 00:00:00 2001 From: rocky Date: Sat, 20 Sep 2003 00:28:31 +0000 Subject: [PATCH] incorrect usage of cd test/ if ! test -> if test ! --- test/Makefile.am | 5 +++-- test/check_cd_read.sh | 4 ++-- test/check_cue.sh.in | 4 ++-- test/check_nrg.sh.in | 4 ++-- test/check_opts.sh | 4 ++-- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index f5975231..f263e541 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.11 2003/09/19 04:09:47 rocky Exp $ +# $Id: Makefile.am,v 1.12 2003/09/20 00:28:31 rocky Exp $ # # Copyright (C) 2003 Rocky Bernstein # @@ -39,7 +39,8 @@ check_DATA = vcd_demo.right \ isofs-m1.right isofs-m1.cue isofs-m1.bin \ check_opts0.right check_opts1.right check_opts2.right \ check_opts3.right check_opts4.right check_opts5.right \ - check_opts6.right check_opts7.right + check_opts6.right check_opts7.right \ + isofs-m1-read.right cdda-read.right EXTRA_DIST = $(check_SCRIPTS) $(check_DATA) \ check_common_fn check_cue.sh.in check_nrg.sh.in diff --git a/test/check_cd_read.sh b/test/check_cd_read.sh index 20ad3238..17ef1041 100755 --- a/test/check_cd_read.sh +++ b/test/check_cd_read.sh @@ -1,5 +1,5 @@ #!/bin/sh -#$Id: check_cd_read.sh,v 1.2 2003/09/19 04:34:53 rocky Exp $ +#$Id: check_cd_read.sh,v 1.3 2003/09/20 00:28:32 rocky Exp $ # # Copyright (C) 2003 Rocky Bernstein # @@ -25,7 +25,7 @@ fi . ${srcdir}/check_common_fn -if ! test -x ../src/cd-read ; then +if test ! -x ../src/cd-read ; then exit 77 fi diff --git a/test/check_cue.sh.in b/test/check_cue.sh.in index 43454718..9958d96b 100644 --- a/test/check_cue.sh.in +++ b/test/check_cue.sh.in @@ -1,5 +1,5 @@ #!/bin/sh -#$Id: check_cue.sh.in,v 1.11 2003/09/19 04:09:47 rocky Exp $ +#$Id: check_cue.sh.in,v 1.12 2003/09/20 00:28:32 rocky Exp $ # Tests to see that BIN/CUE file iamge reading is correct (via cd-info). if test -z "@VCDINFO_LIBS@" ; then vcd_opt='--no-vcd' @@ -11,7 +11,7 @@ fi . ${srcdir}/check_common_fn -if ! test -x ../src/cd-info ; then +if test ! -x ../src/cd-info ; then exit 77 fi diff --git a/test/check_nrg.sh.in b/test/check_nrg.sh.in index e41a6039..603e534d 100755 --- a/test/check_nrg.sh.in +++ b/test/check_nrg.sh.in @@ -1,5 +1,5 @@ #!/bin/sh -#$Id: check_nrg.sh.in,v 1.6 2003/09/01 02:02:59 rocky Exp $ +#$Id: check_nrg.sh.in,v 1.7 2003/09/20 00:28:32 rocky Exp $ if test -z "@VCDINFO_LIBS@" ; then vcd_opt='--no-vcd' @@ -11,7 +11,7 @@ fi . ${srcdir}/check_common_fn -if ! test -x ../src/cd-info ; then +if test ! -x ../src/cd-info ; then exit 77 fi diff --git a/test/check_opts.sh b/test/check_opts.sh index a471d51e..6e9974c9 100755 --- a/test/check_opts.sh +++ b/test/check_opts.sh @@ -1,5 +1,5 @@ #!/bin/sh -#$Id: check_opts.sh,v 1.3 2003/08/29 11:10:01 rocky Exp $ +#$Id: check_opts.sh,v 1.4 2003/09/20 00:28:32 rocky Exp $ # Check cd-info options if test -z "$srcdir" ; then srcdir=`pwd` @@ -7,7 +7,7 @@ fi . ${srcdir}/check_common_fn -if ! test -x ../src/cd-info ; then +if test ! -x ../src/cd-info ; then exit 77 fi