Last active
August 29, 2015 14:17
-
-
Save webmaster128/5b825ccd9349b99aab49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| suites=(block modes aead ocb stream hash mac pbkdf kdf keywrap transform rngs passhash9 bcrypt cryptobox tss rfc6979 bigint rsa rw dsa nr dh dlies elgamal ecc_pointmul ecdsa gost_3410 curve25519 mceliece ecc_unit ecdsa_unit ecdh_unit pk_keygen cvc x509 nist_x509 tls) | |
| for suite in "${suites[@]}"; do | |
| echo "Run test '$suite' ..." | |
| ./botan-test "$suite" | |
| retval=$? | |
| if [[ $retval != 0 ]]; then | |
| echo "Error in last test! Return value: $retval" | |
| exit 1 | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment