1. 12 Jul, 2022 1 commit
  2. 26 Oct, 2017 1 commit
  3. 04 Apr, 2016 1 commit
    • neis's avatar
      Preserve exception message in iterator finalization. · f70b3d3b
      neis authored
      The parser uses a try-catch in order to record when the client of an iterator
      throws.  The exception then used to get rethrown via 'throw', which
      unfortunately resulted in the original exception message object getting
      overwritten.
      
      This CL solves this as follows:
      - add a clear_pending_message flag to TryCatchStatement (set to true in normal
        cases),
      - set clear_pending_message to false for the TryCatchStatement used in iterator
        finalization
      - change full-codegen, turbofan, and the interpreter to emit the ClearPendingMessage call
        only when the flag is set,
      - replace 'throw' with '%ReThrow' in the iterator finalization code, thus
        reusing the (not-cleared) pending message
      
      R=littledan@chromium.org, mstarzinger@chromium.org, yangguo@chromium.org
      BUG=v8:4875
      LOG=n
      
      Review URL: https://codereview.chromium.org/1842953003
      
      Cr-Commit-Position: refs/heads/master@{#35226}
      f70b3d3b
  4. 26 Jan, 2016 1 commit
  5. 19 Jan, 2016 1 commit
  6. 04 Jan, 2016 1 commit
    • machenbach's avatar
      [test] Add ignition test set. · ee665067
      machenbach authored
      Add control for the ignition test suites. This will be
      followed by a change on the infra side that targets the
      ignition set instead of the hardcoded mjsunit.
      
      After that, cctest can be enabled in a separate CL. This CL
      already includes the logic for running cctest for ignition
      on swarming.
      
      BUG=v8:4280
      LOG=N
      
      Review URL: https://codereview.chromium.org/1559943002
      
      Cr-Commit-Position: refs/heads/master@{#33089}
      ee665067
  7. 14 Oct, 2015 1 commit
  8. 06 Oct, 2015 1 commit
    • machenbach's avatar
      [swarming] Run unittests together with default tests. · 35d2028d
      machenbach authored
      This adds the unittests to the "default" test set. Now that
      the "default" and the DEFAULT_TESTS (i.e. runner with
      no arguments) are the same, removed DEFAULT_TESTS and use
      TEST_MAP["default"] instead.
      
      On the bots, where unittests and default were run in
      separation before, the explicit unittests step should now
      be skipped.
      
      This is necessary for swarming, as the unittests step is
      too small to justify its own swarming job.
      
      BUG=chromium:535160
      LOG=n
      
      Review URL: https://codereview.chromium.org/1374733006
      
      Cr-Commit-Position: refs/heads/master@{#31122}
      35d2028d
  9. 05 Oct, 2015 1 commit
  10. 25 Sep, 2015 1 commit