diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-11-07 15:33:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-07 15:33:56 +0100 |
| commit | 0f8299d011420408b9a432a2c01af387af9d5fb2 (patch) | |
| tree | a00012efc8c3d2fdd0a0234cc95a62f2b4251c55 /tools | |
| parent | ed761bf83f47c706d345622eda0920fdbab94787 (diff) | |
fix(cli): don't panic when mapping unknown errors (#12659)
Instead fallback to generic "Error" class, fixes #12590, also update WPT expectations
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/wpt/expectation.json | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 5afc59cd5..e9718b500 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -3089,8 +3089,46 @@ "digest.https.any.worker.html": true }, "encrypt_decrypt": { - "aes_cbc.https.any.html": false, - "aes_cbc.https.any.worker.html": false, + "aes_cbc.https.any.html": [ + "AES-CBC 128-bit key without encrypt usage", + "AES-CBC 192-bit key without encrypt usage", + "AES-CBC 256-bit key without encrypt usage", + "AES-CBC 128-bit key with mismatched key and algorithm", + "AES-CBC 192-bit key with mismatched key and algorithm", + "AES-CBC 256-bit key with mismatched key and algorithm", + "AES-CBC 128-bit key without decrypt usage", + "AES-CBC 192-bit key without decrypt usage", + "AES-CBC 256-bit key without decrypt usage", + "AES-CBC 128-bit key, zeroPadChar", + "AES-CBC 128-bit key, bigPadChar", + "AES-CBC 128-bit key, inconsistentPadChars", + "AES-CBC 192-bit key, zeroPadChar", + "AES-CBC 192-bit key, bigPadChar", + "AES-CBC 192-bit key, inconsistentPadChars", + "AES-CBC 256-bit key, zeroPadChar", + "AES-CBC 256-bit key, bigPadChar", + "AES-CBC 256-bit key, inconsistentPadChars" + ], + "aes_cbc.https.any.worker.html": [ + "AES-CBC 128-bit key without encrypt usage", + "AES-CBC 192-bit key without encrypt usage", + "AES-CBC 256-bit key without encrypt usage", + "AES-CBC 128-bit key with mismatched key and algorithm", + "AES-CBC 192-bit key with mismatched key and algorithm", + "AES-CBC 256-bit key with mismatched key and algorithm", + "AES-CBC 128-bit key without decrypt usage", + "AES-CBC 192-bit key without decrypt usage", + "AES-CBC 256-bit key without decrypt usage", + "AES-CBC 128-bit key, zeroPadChar", + "AES-CBC 128-bit key, bigPadChar", + "AES-CBC 128-bit key, inconsistentPadChars", + "AES-CBC 192-bit key, zeroPadChar", + "AES-CBC 192-bit key, bigPadChar", + "AES-CBC 192-bit key, inconsistentPadChars", + "AES-CBC 256-bit key, zeroPadChar", + "AES-CBC 256-bit key, bigPadChar", + "AES-CBC 256-bit key, inconsistentPadChars" + ], "aes_ctr.https.any.html": [ "AES-CTR 128-bit key", "AES-CTR 192-bit key", |
