Changeset 215079 in webkit


Ignore:
Timestamp:
Apr 6, 2017 5:47:51 PM (7 years ago)
Author:
jiewen_tan@apple.com
Message:

LayoutTest crypto/subtle/aes-ctr-encrypt-malformed-parameters.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=170571

Unreviewed.

  • crypto/subtle/aes-ctr-encrypt-malformed-parameters-expected.txt:
  • crypto/subtle/aes-ctr-encrypt-malformed-parameters.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r215075 r215079  
     12017-04-06  Jiewen Tan  <jiewen_tan@apple.com>
     2
     3        LayoutTest crypto/subtle/aes-ctr-encrypt-malformed-parameters.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=170571
     5
     6        Unreviewed.
     7
     8        * crypto/subtle/aes-ctr-encrypt-malformed-parameters-expected.txt:
     9        * crypto/subtle/aes-ctr-encrypt-malformed-parameters.html:
     10
    1112017-04-06  Wenson Hsieh  <wenson_hsieh@apple.com>
    212
  • trunk/LayoutTests/crypto/subtle/aes-ctr-encrypt-malformed-parameters-expected.txt

    r215051 r215079  
    77PASS crypto.subtle.encrypt({name: "aes-ctr", counter: asciiToUint8Array("jnOw99oOZFLIEPMr"), length: 0}, key, plainText) rejected promise  with OperationError (DOM Exception 34): The operation failed for an operation-specific reason.
    88PASS crypto.subtle.encrypt({name: "aes-ctr", counter: asciiToUint8Array("jnOw99oOZFLIEPMr"), length: 129}, key, plainText) rejected promise  with OperationError (DOM Exception 34): The operation failed for an operation-specific reason.
     9PASS crypto.subtle.encrypt({name: "aes-ctr", counter: asciiToUint8Array("jnOw99oOZFLIEPMr"), length: 1}, key, plainText) rejected promise  with OperationError (DOM Exception 34): The operation failed for an operation-specific reason.
    910PASS successfullyParsed is true
    1011
  • trunk/LayoutTests/crypto/subtle/aes-ctr-encrypt-malformed-parameters.html

    r215051 r215079  
    2626    shouldReject('crypto.subtle.encrypt({name: "aes-ctr", counter: asciiToUint8Array("jnOw99oOZFLIEPMr"), length: 129}, key, plainText)');
    2727    // Loop counter
    28     shouldReject('crypto.subtle.encrypt({name: "aes-ctr", counter: asciiToUint8Array("jnOw99oOZFLIEPMr"), length: 1}, key, plainText)');
    29 
    30     finishJSTest();
     28    shouldReject('crypto.subtle.encrypt({name: "aes-ctr", counter: asciiToUint8Array("jnOw99oOZFLIEPMr"), length: 1}, key, plainText)').then(finishJSTest);
    3129});
    3230
Note: See TracChangeset for help on using the changeset viewer.