Skip to content
Snippets Groups Projects
  1. Aug 06, 2015
  2. Aug 05, 2015
  3. Aug 03, 2015
  4. Jul 28, 2015
  5. Jul 24, 2015
  6. Jul 17, 2015
  7. Jul 16, 2015
  8. Jul 10, 2015
    • Mike Pennisi's avatar
      Prefer explicit error checking where possible · 10e0d977
      Mike Pennisi authored
      The `negative` frontmatter tag expresses an expectation for the behavior
      of the test file as a whole. The `assert.throws` helper function offers
      more fine-grained control over expectations because it may be applied to
      specific statements and expressions. This makes it preferable in cases
      where it may be used (i.e. when the test body does not describe a syntax
      error or early error).
      
      Re-implement assertions for errors to use the `assert.throws` helper
      function wherever possible.
      10e0d977
  9. Jul 06, 2015
    • Leonardo Balter's avatar
      Add test for built-in accessor properties names · a1de5087
      Leonardo Balter authored
      Including:
      
      - 21.2.4.2 get RegExp [ @@species ]
      - 21.2.5.3 get RegExp.prototype.flags
      - 21.2.5.4 get RegExp.prototype.global
      - 21.2.5.5 get RegExp.prototype.ignoreCase
      - 21.2.5.7 get RegExp.prototype.multiline
      - 21.2.5.10 get RegExp.prototype.source
      - 21.2.5.12 get RegExp.prototype.sticky
      - 21.2.5.15 get RegExp.prototype.unicode
      - 22.1.2.5 get Array [ @@species ]
      - 23.1.2.2 get Map [ @@species ]
      - 23.2.2.2 get Set [ @@species ]
      - 24.1.3.3 get ArrayBuffer [ @@species ]
      - 24.1.4.1 get ArrayBuffer.prototype.byteLength
      - 24.2.4.1 get DataView.prototype.buffer
      - 24.2.4.2 get DataView.prototype.byteLength
      - 24.2.4.3 get DataView.prototype.byteOffset
      - 25.4.4.6 get Promise [ @@species ]
      - B.2.2.1.1 get Object.prototype.__proto__
      - B.2.2.1.2 set Object.prototype.__proto__
      
      Skipped TypedArray tests in order to avoid an early test strategy definition for them.
      a1de5087
  10. Jun 18, 2015
    • Mike Pennisi's avatar
      Update handling of directive prologues · 29ecced6
      Mike Pennisi authored
      Some tests specifically concern the application of the `use strict`
      directive as it appears in JavaScript source code. These tests should
      *not* be run with the `onlyStrict` flag because relying on the test
      runner to enable strict mode makes the semantics of the source code
      irrelevant. Update these tests to use the `noStrict` flag.
      
      Other tests concern language semantics that are only valid in strict
      mode, but the mechanism for enabling strictness is inconseqential.
      Update these tests to use the `onlyStrict` flag and remove any redundant
      `use strict` directive prologues contained within.
      
      Still other tests are valid both within and outside of strict mode.
      In keeping with the majority of other tests, do not specify any
      restrictions on the environments in which these tests may be run.
      29ecced6
  11. Jun 14, 2015
  12. Jun 13, 2015
  13. Jun 09, 2015
    • Mike Pennisi's avatar
      Remove `$FAIL` function · 92890e67
      Mike Pennisi authored
      This function is equivalent to `$ERROR` (which is automatically included
      in test environments). Remove the harness file that defines the
      function, remove references to the file from test `includes` lists, and
      update scripts to instead invoke the `$ERROR` function.
      92890e67
  14. May 26, 2015
  15. May 24, 2015
  16. May 18, 2015
    • André Bargull's avatar
      Enable strict mode for more built-in tests · 56036e40
      André Bargull authored
      - Remove no longer needed noStrict flags.
      - Change tests to use propertyHelper.js for strict mode compatibility.
      - Add tests for return value of `delete` operator, e.g. `delete Array.prototype === false`.
      - Add non-writable tests for global NaN property.
      - Split some tests to run in strict mode.
      - Change tests with global `var length` declaration to use a different variable name for browser environments.
      - Merge duplicated tests symbol-data-property-configurable-non-strict and symbol-data-property-configurable-strict.
      - Merge duplicated tests symbol-data-property-writable-non-strict and symbol-data-property-writable-strict.
      - (And a small change in propertyHelper to reduce code duplication in function call.)
      56036e40
  17. May 15, 2015
  18. May 11, 2015
  19. May 08, 2015
  20. Apr 29, 2015
    • André Bargull's avatar
      Fix strict mode errors in built-ins/Array · 74dde3e4
      André Bargull authored
      - Add missing "var" declarations and noStrict flags
      - Move code which requires non-strict semantics from Array.prototype.find_this-arg.js to Array.prototype.find_this-arg-receiver-primitive.js
      - Remove duplicate code from Array.prototype.findIndex_this-arg.js, already present in Array.prototype.findIndex_this-arg-receiver-primitive.js
      - Remove test code from Array.of_assignment-to-new-object-length.js, does not work in strict mode
      
      Part of issue #35
      74dde3e4
  21. Apr 27, 2015
    • André Bargull's avatar
      Update remaining tests for ES2015 compatibility (rev38) · ef8f056a
      André Bargull authored
      - Duplicate properties are allowed in object literals: test/language/expressions/object/*.js
      - RegExpBuiltinExec was changed to use ToLength(lastIndex): test/built-ins/RegExp/prototype/exec/S15.10.6.2_A5_T3.js
      - Non-undefined flags arguments allowed in RegExp constructor call: test/built-ins/RegExp/*.js
      - Array.prototype.push throws TypeError if new length exceeds Number.MAX_SAFE_INTEGER: test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js
      - .length property of bound functions is configurable: test/built-ins/Function/prototype/bind/15.3.4.5-15-2.js
      - Array.prototype changed back to exotic Array object: test/built-ins/Array/prototype/*.js, test/built-ins/Array/isArray/15.4.3.2-0-5.js
      ef8f056a
  22. Apr 20, 2015
    • Mike Pennisi's avatar
      Import tests from Google V8 (native iterators) · e8cc40a0
      Mike Pennisi authored
      These tests are derived from the following files within the Google V8
      project:
      
          test/mjsunit/es6/typed-array-iterator.js
          test/mjsunit/es6/arguments-iterator.js
          test/mjsunit/es6/string-iterator.js
          test/mjsunit/es6/collection-iterator.js
      e8cc40a0
Loading