1. 23 Mar, 2017 1 commit
  2. 23 Nov, 2016 1 commit
  3. 26 Oct, 2016 1 commit
  4. 15 Sep, 2016 1 commit
  5. 14 Sep, 2016 2 commits
  6. 07 Sep, 2016 1 commit
  7. 30 May, 2016 1 commit
  8. 04 Apr, 2016 1 commit
  9. 18 Mar, 2016 1 commit
  10. 11 Mar, 2016 2 commits
    • mstarzinger's avatar
      [testing] Convert some "preparser" tests into "message". · 57ef4f4f
      mstarzinger authored
      This converts existing "preparser" tests that expect a certain exception
      message to be produced into "message" tests. Thereby we get much better
      coverage because the former test suite degraded by now to just check
      whether each test case threw or not, the exception message was not being
      checked at all.
      
      This also deprecates the ability of "preparser" to specify that single
      test cases based on JS files are expected to throw, "messages" is far
      superior, use that test suite instead.
      
      R=machenbach@chromium.org
      TEST=message,preparser
      
      Review URL: https://codereview.chromium.org/1784013003
      
      Cr-Commit-Position: refs/heads/master@{#34713}
      57ef4f4f
    • mstarzinger's avatar
      [testing] Extend interpreter testing to message suite. · 28634e57
      mstarzinger authored
      This also runs the message test suite against Ignition. By now most of
      the source positions (and exception messages) are accurate, the failing
      ones have been blacklisted.
      
      R=machenbach@chromium.org
      
      Review URL: https://codereview.chromium.org/1783773003
      
      Cr-Commit-Position: refs/heads/master@{#34708}
      28634e57
  11. 16 Jun, 2015 1 commit
  12. 12 Jun, 2015 1 commit
    • chunyang.dai's avatar
      X87: Disable the test case for X87 since ea2cb139. · 8c57b2e1
      chunyang.dai authored
            The strong-object-set-proto test cases will throw one expected exception
            and the exception message should include the source position in the JS
            file. But crankshaft compiler does not generate the source position for
            it when creating the flow graph by default. The source position information
            is always zero. So it failed when comparing with the reference file.
      
            If we use crankshaft compiler on IA32 platform to run this test case, it
            has the same failure.
      
            we will open these test case for x87 once turbofan for X87 is enabled.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1179763003
      
      Cr-Commit-Position: refs/heads/master@{#29003}
      8c57b2e1
  13. 14 Apr, 2015 1 commit
    • chunyang.dai's avatar
      X87: Disable the test case for X87 since f3338dd3 · 31a3d5fc
      chunyang.dai authored
        The overwrite-builtins test cases will throw one expected exception
        and the exception message should include the source position in the JS
        file. But crankshaft compiler does not generate the source position for
        it when creating the flow graph by default. The source position information
        is always zero. So it failed when comparing with the reference file.
      
        If we use crankshaft compiler on IA32 platform to run this test case, it
        has the same failure.
      
      BUG=
      
      Review URL: https://codereview.chromium.org/1086503002
      
      Cr-Commit-Position: refs/heads/master@{#27807}
      31a3d5fc
  14. 10 Dec, 2014 1 commit
  15. 08 Dec, 2014 1 commit
  16. 14 Aug, 2014 1 commit
  17. 12 Feb, 2014 2 commits
  18. 24 Sep, 2013 1 commit
  19. 11 Jun, 2012 1 commit
  20. 05 Dec, 2011 1 commit
  21. 07 Dec, 2010 3 commits
  22. 04 Feb, 2010 1 commit
  23. 19 Aug, 2009 1 commit
  24. 14 Jul, 2009 1 commit
  25. 09 Jul, 2009 1 commit
  26. 26 Sep, 2008 2 commits
  27. 09 Sep, 2008 1 commit
  28. 02 Sep, 2008 1 commit
  29. 28 Aug, 2008 1 commit
  30. 22 Aug, 2008 1 commit
    • christian.plesner.hansen's avatar
      Included mjsunit JavaScript test suite and C++ unit tests. · c42f5829
      christian.plesner.hansen authored
      In the shell sample don't print the result of executing a script, only
      evaluating expressions.
      
      Fixed issue when building samples on Windows using a shared V8
      library.  Added visibility option on Linux build which makes the
      generated library 18% smaller.
      
      Changed build system to accept multiple build modes in one build and
      generate seperate objects, libraries and executables for each mode.
      
      Removed deferred negation optimization (a * -b => -(a * b)) since this
      visibly changes operand conversion order.
      
      Improved parsing performance by introducing stack guard in preparsing.
      Without a stack guard preparsing always bails out with stack overflow.
      
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      c42f5829