File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
-compile (export_all ).
18
18
19
+ % % This cipher is listed as supported, but doesn't actually work.
20
+ % % OTP bug: https://bugs.erlang.org/browse/ERL-1478
21
+ -define (SKIPPED_CIPHERS , [aes_ige256 ]).
22
+
19
23
all () ->
20
24
[
21
25
{group , parallel_tests },
@@ -318,7 +322,7 @@ pid_decompose_compose(_Config) ->
318
322
encrypt_decrypt (_Config ) ->
319
323
% % Take all available block ciphers.
320
324
Hashes = rabbit_pbe :supported_hashes (),
321
- Ciphers = rabbit_pbe :supported_ciphers (),
325
+ Ciphers = rabbit_pbe :supported_ciphers () -- ? SKIPPED_CIPHERS ,
322
326
% % For each cipher, try to encrypt and decrypt data sizes from 0 to 64 bytes
323
327
% % with a random passphrase.
324
328
_ = [begin
@@ -336,7 +340,7 @@ encrypt_decrypt(_Config) ->
336
340
encrypt_decrypt_term (_Config ) ->
337
341
% % Take all available block ciphers.
338
342
Hashes = rabbit_pbe :supported_hashes (),
339
- Ciphers = rabbit_pbe :supported_ciphers (),
343
+ Ciphers = rabbit_pbe :supported_ciphers () -- ? SKIPPED_CIPHERS ,
340
344
% % Different Erlang terms to try encrypting.
341
345
DataSet = [
342
346
10000 ,
You can’t perform that action at this time.
0 commit comments