Whamcloud - gitweb
b=21881 Fix trap in rpc.sh.
[fs/lustre-release.git] / lustre / tests / rpc.sh
index e1127d2..098df10 100755 (executable)
@@ -9,11 +9,12 @@ if [ ! -f $LUSTRE/tests/rpc.sh ]; then
 fi
 
 . $LUSTRE/tests/test-framework.sh
-init_test_env $@
+init_test_env
 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
 
-cmd=$1
-shift
-$cmd $@
+# Reset the trap on ERR set by the framework.  Noticing this failure is the
+# framework's job.
+trap - ERR
 
-exit $?
+# Execute the command
+"$@"