Overview
Comment: | Corrected error messages for provider test cases |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | crypto |
Files: | files | file ages | folders |
SHA3-256: |
4011675f4b0df089838e79a3626d108b |
User & Date: | bohagan on 2024-02-24 21:19:41 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-28
| ||
05:26 | Merged changes from master check-in: bfb516156c user: bohagan tags: crypto | |
2024-02-24
| ||
21:19 | Corrected error messages for provider test cases check-in: 4011675f4b user: bohagan tags: crypto | |
21:03 | Removed unneeded test vector files check-in: 216b8859b8 user: bohagan tags: crypto | |
Changes
Modified tests/info.csv from [d54aea3b10] to [54e33db43d].
︙ | ︙ | |||
82 83 84 85 86 87 88 | Error Cases,Digests too many args,,,::tls::digests too many args,,,"wrong # args: should be ""::tls::digests ?name?""",,,1 Error Cases,MACs too many args,,,::tls::macs too many args,,,"wrong # args: should be ""::tls::macs ?name?""",,,1 Error Cases,Pkeys too many args,,,::tls::pkeys too many args,,,"wrong # args: should be ""::tls::pkeys ?name?""",,,1 Error Cases,Protocols too many args,,,::tls::protocols too many args,,,"wrong # args: should be ""::tls::protocols""",,,1 Error Cases,Version too many args,,,::tls::version too many args,,,"wrong # args: should be ""::tls::version""",,,1 ,,,,,,,,,, command,# Provider command,,,,,,,,, | | | | 82 83 84 85 86 87 88 89 90 91 92 | Error Cases,Digests too many args,,,::tls::digests too many args,,,"wrong # args: should be ""::tls::digests ?name?""",,,1 Error Cases,MACs too many args,,,::tls::macs too many args,,,"wrong # args: should be ""::tls::macs ?name?""",,,1 Error Cases,Pkeys too many args,,,::tls::pkeys too many args,,,"wrong # args: should be ""::tls::pkeys ?name?""",,,1 Error Cases,Protocols too many args,,,::tls::protocols too many args,,,"wrong # args: should be ""::tls::protocols""",,,1 Error Cases,Version too many args,,,::tls::version too many args,,,"wrong # args: should be ""::tls::version""",,,1 ,,,,,,,,,, command,# Provider command,,,,,,,,, Provider,Provider too few args,new_api,,::tls::provider,,,"wrong # args: should be ""::tls::provider name""",,,1 Provider,Provider too few args,new_api,,::tls::provider too many args,,,"wrong # args: should be ""::tls::provider name""",,,1 Provider,Provider invalid arg,new_api,,::tls::provider invalid,,,could not load the shared library,,,1 Provider,Provider legacy provider,new_api,,::tls::provider legacy,,,,,, |
Modified tests/info.test from [7b7740348c] to [9635e7beea].
︙ | ︙ | |||
237 238 239 240 241 242 243 | } -result {wrong # args: should be "::tls::version"} -returnCodes {1} # Provider command test Provider-14.1 {Provider too few args} -constraints {new_api} -body { ::tls::provider | | | | 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | } -result {wrong # args: should be "::tls::version"} -returnCodes {1} # Provider command test Provider-14.1 {Provider too few args} -constraints {new_api} -body { ::tls::provider } -result {wrong # args: should be "::tls::provider name"} -returnCodes {1} test Provider-14.2 {Provider too few args} -constraints {new_api} -body { ::tls::provider too many args } -result {wrong # args: should be "::tls::provider name"} -returnCodes {1} test Provider-14.3 {Provider invalid arg} -constraints {new_api} -body { ::tls::provider invalid } -result {could not load the shared library} -returnCodes {1} test Provider-14.4 {Provider legacy provider} -constraints {new_api} -body { ::tls::provider legacy |
︙ | ︙ |