/
githubmirror
/
keyutils
Обзор
Документация
Войти
/
githubmirror
/
keyutils
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/keyctl/update/userupdate/runtest.sh
38 строк
804 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 we can add a user key to the session keyring marker "ADD USER KEY" create_key user wibble stuff @s expect_keyid keyid # read back what we put in it marker "PRINT PAYLOAD" print_key $keyid expect_payload payload "stuff" # check that we can update a user key marker "UPDATE USER KEY" update_key $keyid "lizard" # read back what we changed it to marker "PRINT UPDATED PAYLOAD" print_key $keyid expect_payload payload "lizard" # remove the key we added marker "UNLINK KEY" unlink_key $keyid @s echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE # --- then report the results in the database --- toolbox_report_result $TEST $result