Reviewers: Søren Gjesse, Description: Stop running some liveedit tests (see issue 915). Plug tiny memory leaks in test-lock.cc.
Please review this at http://codereview.chromium.org/4161005/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/cctest/test-lock.cc M test/mjsunit/mjsunit.status Index: test/cctest/test-lock.cc =================================================================== --- test/cctest/test-lock.cc (revision 5724) +++ test/cctest/test-lock.cc (working copy) @@ -60,4 +60,5 @@ sem->Signal(); ok = sem->Wait(1000); CHECK(ok); + delete sem; } Index: test/mjsunit/mjsunit.status =================================================================== --- test/mjsunit/mjsunit.status (revision 5724) +++ test/mjsunit/mjsunit.status (working copy) @@ -45,6 +45,10 @@ # Skip long running test in debug and allow it to timeout in release mode. regress/regress-524: (PASS || TIMEOUT), SKIP if $mode == debug +# Stack manipulations in LiveEdit are buggy - see bug 915 +debug-liveedit-check-stack: SKIP +debug-liveedit-patch-positions-replace: SKIP + [ $arch == arm ] # Slow tests which times out in debug mode. @@ -61,14 +65,9 @@ # Skip long running test in debug mode on ARM. string-indexof-2: PASS, SKIP if $mode == debug -# Stack manipulations in LiveEdit is implemented for ia32 only. -debug-liveedit-check-stack: SKIP [ $arch == mips ] -# Stack manipulations in LiveEdit is implemented for ia32 only. -debug-liveedit-check-stack: SKIP - # Skip all tests on MIPS. *: SKIP -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
