Naresh Kamboju | cfe003a | 2016-11-10 01:50:55 +0530 | [diff] [blame] | 1 | metadata: |
| 2 | name: openssl-debian |
| 3 | format: "Manual Test Definition 1.0" |
| 4 | description: "OpenSSL is an open source project that provides a robust, |
| 5 | commercial-grade, and full-featured toolkit for the Transport Layer |
| 6 | Security (TLS) and Secure Sockets Layer (SSL) protocols. |
| 7 | It is also a general-purpose cryptography library |
| 8 | ref: https://www.openssl.org" |
| 9 | maintainer: |
| 10 | - naresh.kamboju@linaro.org |
| 11 | os: |
| 12 | - debian |
| 13 | - ubuntu |
| 14 | scope: |
| 15 | - functional |
| 16 | devices: |
| 17 | - d02 |
| 18 | - d03 |
| 19 | - d05 |
| 20 | - overdrive |
| 21 | environment: |
| 22 | - manual-test |
| 23 | |
| 24 | run: |
| 25 | steps: |
| 26 | - apt-get update |
| 27 | - apt-get -y install build-essential |
| 28 | - apt-get -y install openssl |
| 29 | - apt-get source openssl |
| 30 | - VERSION=$(dpkg -l | grep " openssl " |awk '{print $3}'|cut -d- -f 1 | cut -d: -f2) |
| 31 | - cd openssl-"${VERSION}" |
| 32 | - ./config |
| 33 | - make -j8 |
| 34 | - make install |
| 35 | - make test |
| 36 | - run takes around 5 minutes |
| 37 | expected: |
| 38 | - all tests should pass, look for "ALL TESTS SUCCESSFUL" |
| 39 | - if any openssl test fails please report bugs |