blob: 5a9408fa17c15dbe0c18b30937433e00b219cd92 [file] [log] [blame] [edit]
#!/bin/bash
. ../../../prepare.inc.sh
. ../../../toolbox.inc.sh
# ---- do the actual testing ----
result=PASS
echo "++++ BEGINNING TEST" >$OUTPUTFILE
marker "NO ARGS"
expect_args_error keyctl read
expect_args_error keyctl pipe
expect_args_error keyctl print
marker "ONE ARG"
expect_args_error keyctl chown 0
expect_args_error keyctl chgrp 0
expect_args_error keyctl setperm 0
marker "THREE ARGS"
expect_args_error keyctl chown 0 0 0
expect_args_error keyctl chgrp 0 0 0
expect_args_error keyctl setperm 0 0 0
echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE
# --- then report the results in the database ---
toolbox_report_result $TEST $result