+2000-06-30 Ken Raeburn <raeburn@mit.edu>
+
+ * rpc_test_setup.sh: Error out if server_handle doesn't get set in
+ the Tcl script.
+
2000-06-08 Tom Yu <tlyu@mit.edu>
* lib/helpers.exp (kinit): Move "expect eof" into the commands
source $env(TCLUTIL)
set h $env(CANON_HOST)
puts stdout [ovsec_kadm_init admin admin $OVSEC_KADM_ADMIN_SERVICE null $OVSEC_KADM_STRUCT_VERSION $OVSEC_KADM_API_VERSION_1 server_handle]
+if ![info exists server_handle] { exit 1 }
puts stdout [ovsec_kadm_create_principal $server_handle [simple_principal server/$h] {OVSEC_KADM_PRINCIPAL} admin]
puts stdout [ovsec_kadm_randkey_principal $server_handle server/$h key]
puts stdout [ovsec_kadm_create_principal $server_handle [simple_principal notserver/$h] {OVSEC_KADM_PRINCIPAL} admin]
puts stdout [ovsec_kadm_destroy $server_handle]
EOF
eval "$CLNTTCL $REDIRECT < /tmp/rpc_test_setup$$"
+if test $? != 0 ; then
+ rm /tmp/rpc_test_setup$$
+ echo 1>&2 error setting up database for tests
+ exit 1
+fi
rm /tmp/rpc_test_setup$$
rm -f $RPC_TEST_SRVTAB