Manuel Pégourié-Gonnard | fb2ed58 | 2022-07-21 11:04:52 +0200 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Manuel Pégourié-Gonnard | fca4dc6 | 2022-07-26 10:10:07 +0200 | [diff] [blame] | 3 | # This script runs tests in various revisions and configurations and analyses |
| 4 | # the results in order to highlight any difference in the set of tests skipped |
| 5 | # in the test suites of interest. |
| 6 | # |
| 7 | # It can be used to ensure the testing criteria mentioned in strategy.md, |
| 8 | # end of section "Supporting builds with drivers without the software |
| 9 | # implementation" are met, namely: |
| 10 | # |
| 11 | # - the sets of tests skipped in the default config and the full config must be |
| 12 | # the same before and after the PR that implements step 3; |
| 13 | # - the set of tests skipped in the driver-only build is the same as in an |
| 14 | # equivalent software-based configuration, or the difference is small enough, |
| 15 | # justified, and a github issue is created to track it. |
| 16 | # |
| 17 | # WARNING: this script checks out a commit other than the head of the current |
Manuel Pégourié-Gonnard | 68429fc | 2022-07-27 20:37:12 +0200 | [diff] [blame^] | 18 | # branch; it checks out the current branch again when running successfully, |
Manuel Pégourié-Gonnard | fca4dc6 | 2022-07-26 10:10:07 +0200 | [diff] [blame] | 19 | # but while the script is running, or if it terminates early in error, you |
Manuel Pégourié-Gonnard | 68429fc | 2022-07-27 20:37:12 +0200 | [diff] [blame^] | 20 | # should be aware that you might be at a different commit than expected. |
Manuel Pégourié-Gonnard | fca4dc6 | 2022-07-26 10:10:07 +0200 | [diff] [blame] | 21 | # |
| 22 | # NOTE: This is only an example/template script, you should make a copy and |
| 23 | # edit it to suit your needs. The part that needs editing is at the top. |
Manuel Pégourié-Gonnard | fb2ed58 | 2022-07-21 11:04:52 +0200 | [diff] [blame] | 24 | # |
| 25 | # Also, you can comment out parts that don't need to be re-done when |
| 26 | # re-running this script (for example "get numbers before this PR"). |
| 27 | |
| 28 | # ----- BEGIN edit this ----- |
Manuel Pégourié-Gonnard | fca4dc6 | 2022-07-26 10:10:07 +0200 | [diff] [blame] | 29 | # The component in all.sh that builds and tests with drivers. |
Manuel Pégourié-Gonnard | fb2ed58 | 2022-07-21 11:04:52 +0200 | [diff] [blame] | 30 | DRIVER_COMPONENT=test_psa_crypto_config_accel_hash_use_psa |
Manuel Pégourié-Gonnard | fca4dc6 | 2022-07-26 10:10:07 +0200 | [diff] [blame] | 31 | # A similar configuration to that of the component, except without drivers, |
| 32 | # for comparison. |
Manuel Pégourié-Gonnard | fb2ed58 | 2022-07-21 11:04:52 +0200 | [diff] [blame] | 33 | reference_config () { |
| 34 | scripts/config.py set MBEDTLS_USE_PSA_CRYPTO |
| 35 | scripts/config.py unset MBEDTLS_PKCS1_V21 |
| 36 | scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT |
| 37 | scripts/config.py unset MBEDTLS_PKCS5_C |
| 38 | scripts/config.py unset MBEDTLS_PKCS12_C |
| 39 | scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC |
| 40 | } |
Manuel Pégourié-Gonnard | fca4dc6 | 2022-07-26 10:10:07 +0200 | [diff] [blame] | 41 | # Space-separated list of test suites of interest. |
Manuel Pégourié-Gonnard | fb2ed58 | 2022-07-21 11:04:52 +0200 | [diff] [blame] | 42 | SUITES="rsa pkcs1_v15 pk pkparse pkwrite" |
| 43 | # ----- END edit this ----- |
| 44 | |
| 45 | set -eu |
| 46 | |
| 47 | cleanup() { |
| 48 | make clean |
| 49 | git checkout -- include/mbedtls/mbedtls_config.h include/psa/crypto_config.h |
| 50 | } |
| 51 | |
| 52 | record() { |
| 53 | export MBEDTLS_TEST_OUTCOME_FILE="$PWD/outcome-$1.csv" |
| 54 | rm -f $MBEDTLS_TEST_OUTCOME_FILE |
| 55 | make check |
| 56 | } |
| 57 | |
| 58 | # save current HEAD |
| 59 | HEAD=$(git branch --show-current) |
| 60 | |
| 61 | # get the numbers before this PR for default and full |
| 62 | cleanup |
| 63 | git checkout $(git merge-base HEAD development) |
| 64 | record "before-default" |
| 65 | |
| 66 | cleanup |
| 67 | scripts/config.py full |
| 68 | record "before-full" |
| 69 | |
| 70 | # get the numbers now for default and full |
| 71 | cleanup |
| 72 | git checkout $HEAD |
| 73 | record "after-default" |
| 74 | |
| 75 | cleanup |
| 76 | scripts/config.py full |
| 77 | record "after-full" |
| 78 | |
| 79 | # get the numbers now for driver-only and reference |
| 80 | cleanup |
| 81 | reference_config |
| 82 | record "reference" |
| 83 | |
| 84 | cleanup |
| 85 | export MBEDTLS_TEST_OUTCOME_FILE="$PWD/outcome-drivers.csv" |
| 86 | tests/scripts/all.sh -k test_psa_crypto_config_accel_hash_use_psa |
| 87 | |
| 88 | # analysis |
| 89 | |
| 90 | compare_suite () { |
| 91 | ref="outcome-$1.csv" |
| 92 | new="outcome-$2.csv" |
| 93 | suite="$3" |
| 94 | |
| 95 | pattern_suite=";test_suite_$suite;" |
| 96 | total=$(grep -c "$pattern_suite" "$ref") |
| 97 | sed_cmd="s/^.*$pattern_suite\(.*\);SKIP.*/\1/p" |
| 98 | sed -n "$sed_cmd" "$ref" > skipped-ref |
| 99 | sed -n "$sed_cmd" "$new" > skipped-new |
| 100 | nb_ref=$(wc -l <skipped-ref) |
| 101 | nb_new=$(wc -l <skipped-new) |
| 102 | |
| 103 | printf "%12s: total %3d; skipped %3d -> %3d\n" \ |
| 104 | $suite $total $nb_ref $nb_new |
| 105 | diff skipped-ref skipped-new | grep '^> ' || true |
| 106 | rm skipped-ref skipped-new |
| 107 | } |
| 108 | |
| 109 | compare_builds () { |
| 110 | printf "\n*** Comparing $1 -> $2 ***\n" |
| 111 | for suite in $SUITES; do |
| 112 | compare_suite "$1" "$2" "$suite" |
| 113 | done |
| 114 | } |
| 115 | |
| 116 | compare_builds before-default after-default |
| 117 | compare_builds before-full after-full |
| 118 | compare_builds reference drivers |
| 119 | |