* rpc_test_setup.sh: Fix test of $VERBOSE_TEST so that $VERBOSE
authorTom Yu <tlyu@mit.edu>
Tue, 12 Nov 1996 20:01:18 +0000 (20:01 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 12 Nov 1996 20:01:18 +0000 (20:01 +0000)
only gets set if $VERBOSE_TEST is not empty.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9388 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/rpc/unit-test/ChangeLog
src/lib/rpc/unit-test/rpc_test_setup.sh

index f6fcc7e8158ccb73a89a8b2890286b896e4604cd..22cea206a8460619a0a75a62d9e27cbd6cc04c5e 100644 (file)
@@ -1,3 +1,8 @@
+Tue Nov 12 14:58:20 1996  Tom Yu  <tlyu@mit.edu>
+
+       * rpc_test_setup.sh: Fix test of $VERBOSE_TEST so that $VERBOSE
+       only gets set if $VERBOSE_TEST is not empty.
+
 Mon Nov 11 20:52:27 1996  Tom Yu  <tlyu@mit.edu>
 
        * rpc_test_setup.sh: Use a temp file rather than a here document
index d31ae89be3fc62b8bac8baa9e57a754aaf10cf7f..4bf869f3cce1296e16b94ae3e3c58ba2fd297c94 100644 (file)
@@ -13,9 +13,12 @@ DUMMY=${TCLUTIL=$TESTDIR/tcl/util.t}; export TCLUTIL
 DUMMY=${MAKE_KEYTAB=$TESTDIR/scripts/make-host-keytab.pl}
 
 # If it's set, set it to true
-VERBOSE=${VERBOSE_TEST+true}
+if test x$VERBOSE_TEST = x; then
+       VERBOSE=true
 # Otherwise, set it to false
-DUMMY=${VERBOSE=false}
+else
+       VERBOSE=false
+fi
 
 if $VERBOSE; then
        REDIRECT=