blob: 8e570b92374b19b61adcca112f7995a4ae42f628 [file] [log] [blame] [edit]
#!/bin/bash
. ../../../prepare.inc.sh
. ../../../toolbox.inc.sh
# ---- do the actual testing ----
result=PASS
echo "++++ BEGINNING TEST" >$OUTPUTFILE
# check that no arguments fails correctly
marker "ADD NO ARGS"
expect_args_error keyctl update
# check that one argument fails correctly
marker "ADD ONE ARG"
expect_args_error keyctl update user
# check that three arguments fail correctly
marker "ADD THREE ARGS"
expect_args_error keyctl update user wibble stuff
echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE
# --- then report the results in the database ---
toolbox_report_result $TEST $result