/
githubmirror
/
keyutils
Обзор
Документация
Войти
/
githubmirror
/
keyutils
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/keyctl/timeout/noargs/runtest.sh
26 строк
594 B
Tyler Hicks
TEST: Explicitly use bash
25 фев 2014, 15:14
25 фев 2014, 15:14
80d4848
Код
Авторство
О чём код?
#!/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 timeout # check that one argument fails correctly marker "ADD ONE ARG" expect_args_error keyctl timeout 0 # check that three arguments fail correctly marker "ADD THREE ARGS" expect_args_error keyctl timeout 0 0 0 echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE # --- then report the results in the database --- toolbox_report_result $TEST $result