Skip to content
Snippets Groups Projects
  1. Apr 20, 2017
  2. Apr 18, 2017
    • André Bargull's avatar
      Optimize decodeURI/encodeURI tests (#987) · 94f6003d
      André Bargull authored
      * Move decimalToHexString into harness instead of duplicating it in multiple files
      
      * Optimize decimalToHexString and support numbers greater than 65535
      
      * Replace alternative decimalToHexString function with include for decimalToHexString.js
      
      * Add decimalToHex2String to return the string representation of a two-digit hex-number
      
      * Replace decimalToHex2String with decimalToPercentHexString to return the percent hex-encoded string of a two-digit hex-number
      
      * Replace two String.fromCharCode calls with a single call
      
      * Further reduce string concatentations in decodeURI[Component] tests
      
      * Remove unnecessary Test262Error error handling in catch-clauses
      
      * Remove try/catch wrappings in decodeURI/encodeURI tests
      94f6003d
    • Mathias Bynens's avatar
    • Mike Pennisi's avatar
      Add omitted license information · a61efb51
      Mike Pennisi authored
      As the author of these files, I can verify that they were contributed in
      2015 on behalf of the V8 project.
      a61efb51
    • Mike Pennisi's avatar
      Correct typo in copyright information · 2c0c3e7f
      Mike Pennisi authored
      2c0c3e7f
    • jugglinmike's avatar
      Reference `requirements.txt` file in CI (#983) · 33350345
      jugglinmike authored
      Installing dependencies using this file increases parity between the CI
      and development environment. Because the file explicitly specifies a
      version of the package to be installed, this approach also produces more
      predictable results overall.
      33350345
  3. Apr 17, 2017
  4. Apr 15, 2017
  5. Apr 14, 2017
  6. Apr 13, 2017
  7. Apr 11, 2017
  8. Apr 10, 2017
  9. Apr 07, 2017
    • Rick Waldron's avatar
      Merge pull request #953 from leobalter/syg-async-lineterm · 3c79e9db
      Rick Waldron authored
      Update cases for async arrow fns with a line terminator
      3c79e9db
    • Leo Balter's avatar
      Update object literal expressions for readability · 6030e4ed
      Leo Balter authored
      After @rwaldron's feedback:
      
      The purpose of the `!` operator is to evaluate an UnaryExpression,
      coerce the result to a boolean value and then return the negated
      value of that operation. But that's not what you're trying to do at
      all—you just want to evaluate the expression to the right of the
      operator, nothing more, nothing less. In this specific case, you
      don't even really care about the evaluation, the goal is write
      valid (or invalid, as the case may be) syntax that is will be
      parsed according to a specific grammar rule that requires some
      operator to signal that the thing is an expression and not a Block
      Statement.
      6030e4ed
  10. Apr 06, 2017
    • Leo Balter's avatar
      Merge branch 'littledan-test262-fixes' · 230f9fc5
      Leo Balter authored
      Closes #954
      230f9fc5
    • Daniel Ehrenberg's avatar
      Generate tests · 20536eab
      Daniel Ehrenberg authored
      20536eab
    • Daniel Ehrenberg's avatar
      Fix async generator test templates · dcfcd17a
      Daniel Ehrenberg authored
      - Insert a missing .next() call
      - Avoid overlapping names used in test cases
      
      Case files like `src/dstr-binding/ary-ptrn-elem-ary-elision-init.case` are already setting
      bindings named `g`. Renaming them in the templates prevents overlapping names.
      dcfcd17a
    • Daniel Ehrenberg's avatar
      73c2d517
    • Leo Balter's avatar
      Add info · 590d04ed
      Leo Balter authored
      590d04ed
    • Leo Balter's avatar
      4941d46a
    • Shu-yu Guo's avatar
    • Leo Balter's avatar
      Merge pull request #952 from leobalter/anba-bug-fixes-new · 7e87c739
      Leo Balter authored
      [rebased] Update tests to match latests drafts
      7e87c739
    • Leo Balter's avatar
      Generate tests · 883db87a
      Leo Balter authored
      883db87a
    • André Bargull's avatar
      Fix multiple test errors · 3291704e
      André Bargull authored
      Tests doesn't use async functionality and don't call $DONE, so remove
      "async" flag:
      - src/params/error/async-gen-named-func-expr.template
      - test/language/expressions/async-generator/params-named-dflt-abrupt.js
      - test/language/expressions/async-generator/params-named-dflt-ref-later.js
      - test/language/expressions/async-generator/params-named-dflt-ref-self.js
      
      Intl.PluralRules.prototype is no longer a Intl.Prototype instance:
      - test/intl402/PluralRules/prototype/prototype.js
      
      Intl.PluralRules throws an error when called as a function:
      - test/intl402/PluralRules/undefined-newtarget-throws.js
      
      Module namespace objects call OrdinaryDelete for symbol properties:
      - test/language/module-code/namespace/internals/delete-non-exported.js
      
      Async generators no longer retrieves "done" property twice:
      - src/async-generators/yield-star-async-next.case
      - src/async-generators/yield-star-async-return.case
      - src/async-generators/yield-star-async-throw.case
      
      Minor units of CLF is 4, so we need to test with maximumFractionDigits=3
      to get an error:
      - test/intl402/NumberFormat/dft-currency-mnfd-range-check-mxfd.js
      
      DateTimeFormat.prototype.formatToParts length property was changed from
      0 to 1:
      - test/intl402/DateTimeFormat/prototype/formatToParts/length.js
      
      minimumSignificantDigits and maximumSignificantDigits properties are
      only retrieved once:
      - test/intl402/NumberFormat/11.1.1_32.js
      3291704e
    • Leo Balter's avatar
      Merge branch 'littledan-tag-tests' · ef7b9997
      Leo Balter authored
      Closes #948
      ef7b9997
Loading