summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Suppress a benign/false-positive race in ThreadCollisionWarner and a benign ↵timurrrr@chromium.org2010-11-121-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | race in CookieMonster Histogram handling For the first race, the reports look like this: WARNING: Possible data race during write of size 4 at 0080F90C: {{{ T26 (L{}): #0 base::subtle::NoBarrier_Store base/atomicops_internals_x86_msvc.h:67 #1 base::ThreadCollisionWarner::Leave base/thread_collision_warner.cc:60 ... Concurrent write(s) happened at (OR AFTER) these points: T27 (L{}): #0 base::subtle::NoBarrier_Store base/atomicops_internals_x86_msvc.h:66 #1 base::ThreadCollisionWarner::Leave base/thread_collision_warner.cc:60 And the code is: void ThreadCollisionWarner::Leave() { if (subtle::Barrier_AtomicIncrement(&counter_, -1) == 0) { subtle::NoBarrier_Store(&valid_thread_id_, 0); } } TBR=glider BUG=62694 Review URL: http://codereview.chromium.org/4837004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65941 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress Valgrind reports in ↵timurrrr@chromium.org2010-11-122-7/+49
| | | | | | | | | | | safe_browsing::ClientSideDetectionService::StartClientReportPhishingRequest BUG=62943 TBR=glider TEST=./tools/valgrind/waterfall.sh says they are all suppressed Review URL: http://codereview.chromium.org/4890001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65932 0039d316-1c4b-4281-b951-d872f2087c98
* Widen a suppression for bug 57949 (Invalid read inglider@chromium.org2010-11-111-1/+18
| | | | | | | | | | | | AutomatedUITestBase.OpenCloseBrowserWindowWithAccelerator) Suppress bug 62801 (invalid read in PR_Lock) TBR=timurrrr BUG=57949,62801 Review URL: http://codereview.chromium.org/4802001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65788 0039d316-1c4b-4281-b951-d872f2087c98
* checkperms: whitelist third_party/opensslevan@chromium.org2010-11-111-0/+1
| | | | | | | | It has all sorts of +x files. We'll just be careful. Review URL: http://codereview.chromium.org/4771005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65756 0039d316-1c4b-4281-b951-d872f2087c98
* The GPU watchdog timer is always disabled when run with valgrind. Removing ↵apatrick@chromium.org2010-11-111-9/+0
| | | | | | | | | | | suppresion. TEST=mac_valgrind BUG=58244 Review URL: http://codereview.chromium.org/4755002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65753 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run CookieMonsterTest.GarbageCollectionTriggers under TSan/Win - just ↵timurrrr@chromium.org2010-11-101-0/+3
| | | | | | | | | | a little too slow BUG=59642 TBR=rdsmith Review URL: http://codereview.chromium.org/4646007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65671 0039d316-1c4b-4281-b951-d872f2087c98
* Widen a suppression for use-after-free bugtimurrrr@chromium.org2010-11-101-0/+1
| | | | | | | | BUG=62461 TBR=glider Review URL: http://codereview.chromium.org/4747003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65662 0039d316-1c4b-4281-b951-d872f2087c98
* Speed up TSan/Win by simplifying the instrumentation of some STL internalstimurrrr@chromium.org2010-11-101-0/+6
| | | | | | | | | | They account for quite a lot of memory accesses and result in a significant slowdown on some tests TBR=glider TEST=TSan/Win should become faster Review URL: http://codereview.chromium.org/4643006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65661 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress an invalid read in net::SingleRequestHostResolver::Cancel()timurrrr@chromium.org2010-11-101-0/+16
| | | | | | | | BUG=62674 TBR=glider Review URL: http://codereview.chromium.org/4639004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65660 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude some tests failing on Valgrind/Mac UItimurrrr@chromium.org2010-11-101-0/+4
| | | | | | | | TBR=timurrrr BUG=50297,58145 Review URL: http://codereview.chromium.org/4644005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65657 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run IPCSyncChannelTest.BadMessage under TSan on Windowstimurrrr@chromium.org2010-11-101-0/+2
| | | | | | | | BUG=62511 TBR=glider Review URL: http://codereview.chromium.org/4708004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65655 0039d316-1c4b-4281-b951-d872f2087c98
* Widen Valgrind suppressions for bugs 61753 (Leak) and 62461 (Use-after-free)timurrrr@chromium.org2010-11-102-2/+11
| | | | | | | | | BUG=61753,62461 TBR=glider TEST=./tools/valgrind/waterfall.sh Review URL: http://codereview.chromium.org/4651004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65647 0039d316-1c4b-4281-b951-d872f2087c98
* Revert a workaround & exclude filters for TSan/Win failurestimurrrr@chromium.org2010-11-103-12/+0
| | | | | | | | | | | | | a) Unknown nonzero error codes disappeared after the bot recovery (it was showing a "Recovered from a BSOD" message) b) The CookieMonster tests were failing due to slow stl checks in Debug mode. This should be fixed by r65377 and r65384 BUG=62512,59642 TEST=TSan/Win should remain green TBR=glider Review URL: http://codereview.chromium.org/4713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65646 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore _cthread_fork_child on Mac recursively.glider@chromium.org2010-11-101-0/+10
| | | | | | | | TBR=timurrrr Review URL: http://codereview.chromium.org/4734003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65640 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leak in DeviceManagementPolicyProvider.danno@chromium.org2010-11-092-18/+0
| | | | | | | | | BUG=62505 TEST=mac valgrind Review URL: http://codereview.chromium.org/4707002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65568 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress doexit TSan/Win race reportstimurrrr@chromium.org2010-11-091-0/+8
| | | | | | | | TBR=glider BUG=62560 Review URL: http://codereview.chromium.org/4732003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65564 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a policy:: leak on the Heapchecker bottimurrrr@chromium.org2010-11-091-0/+9
| | | | | | | | | BUG=62505 TBR=danno TEST=Heapchecker bot should go green Review URL: http://codereview.chromium.org/4673005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65561 0039d316-1c4b-4281-b951-d872f2087c98
* Temporary workaround -> ignore the Execute retcode on TSan/Wintimurrrr@chromium.org2010-11-091-0/+5
| | | | | | | | TBR=glider BUG=62512 Review URL: http://codereview.chromium.org/4683009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65538 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress memory leaks in policy::DeviceManagementPolicy teststimurrrr@chromium.org2010-11-091-0/+9
| | | | | | | | | BUG=62505 TBR=glider TEST=./tools/valgrind/waterfall.sh Review URL: http://codereview.chromium.org/4683008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65533 0039d316-1c4b-4281-b951-d872f2087c98
* Widen suppressions for the Singleton::OnExit data race and WebDatabase ↵timurrrr@chromium.org2010-11-092-0/+80
| | | | | | | | | | | use-after-free's TBR=glider BUG=61753,62461 TEST=waterfall.sh shows a dramatic decrease of the number of reports Review URL: http://codereview.chromium.org/4742001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65531 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore _updatetlocinfoEx_nolock under TSan/Wintimurrrr@chromium.org2010-11-091-0/+1
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/4722002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65525 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress 2000+ reports from NS/Browser/objc_sendMsgtimurrrr@chromium.org2010-11-091-0/+32
| | | | | | | | BUG=62461 TBR=glider Review URL: http://codereview.chromium.org/4738002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65512 0039d316-1c4b-4281-b951-d872f2087c98
* Move the valgrind suppression for bug 61685 to the "Can't fix" section.suzhe@chromium.org2010-11-081-14/+15
| | | | | | | | | | | | | | | | | | | By checking the source code of gtk+-2.12.x, I believe it's a bug of gtk and should already be fixed in recent version. See the source code of gtk+-2.12.9: http://git.gnome.org/browse/gtk+/tree/gtk/gtkimmulticontext.c?id=GTK_2_12_9#n230 global_context_id is allocated in _gtk_im_module_get_default_context_id() by calling g_strdup(), but it never gets freed. In the latest gtk code: http://git.gnome.org/browse/gtk+/tree/gtk/gtkimmodule.c?id=2.20.1#n663 _gtk_im_module_get_default_context_id() just returns a pointer to a string literal instead of a duplicated string. BUG=61685 TEST=none Review URL: http://codereview.chromium.org/4715002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65441 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a leak in wifi geolocation on the Macstuartmorgan@chromium.org2010-11-081-13/+0
| | | | | | | | | | | According to the comment in the reverse-engineered header, the returned arrays are allocated by the function, which would mean the client is responsible for freeing them. BUG=None TEST=Greener valgrind bots. Review URL: http://codereview.chromium.org/4545002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65389 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a leak.skerner@chromium.org2010-11-081-10/+23
| | | | | | | | BUG=62346 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65380 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run HTTPSRequestTest tests under Valgrind on Mactimurrrr@chromium.org2010-11-082-3/+4
| | | | | | | | BUG=62314 TBR=glider Review URL: http://codereview.chromium.org/4682001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65370 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run SSLClientSocketTest tests under Valgrindtimurrrr@chromium.org2010-11-081-1/+1
| | | | | | | | | BUG=62314 TEST=Valgrind&TSan mac bots should go green TBR=glider Review URL: http://codereview.chromium.org/4675001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65359 0039d316-1c4b-4281-b951-d872f2087c98
* Use less TSan ignores for base/atomic*timurrrr@chromium.org2010-11-082-7/+4
| | | | | | | TEST=TSan bots on the memory waterfall should remain green Review URL: http://codereview.chromium.org/4671001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65357 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run SSLClientSocketTest.Connect tests under Valgrindtimurrrr@chromium.org2010-11-081-0/+3
| | | | | | | | | BUG=62314 TBR=glider TEST=Valgrind&TSan Mac bots should go green Review URL: http://codereview.chromium.org/4670001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65356 0039d316-1c4b-4281-b951-d872f2087c98
* Update expectations for xpdual/moz.chase@chromium.org2010-11-071-3/+3
| | | | | | | | | | | | | | | | - total_op_b went up around r65182, bug for that is 62272 - total_byte_r and total_byte_b went up around r64763, bug for that is 62274. BUG=62272, 62274 TEST=xp perf is green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/4652001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65343 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 65329 - Revert 65272 - Autofill heapcheck and valgrind leak in ↵jar@chromium.org2010-11-072-26/+0
| | | | | | | | | | | | | | | | | | | | | PersonalDataManager unit test fixed [Redness was not healed... so I'm reverting the revert] An early return in the WebDataService was the source of a leak in PersonalDataManagerTest.Refresh test. This fixes it. Also, some small cleanup in the test itself. BUG=61988 TEST=Memory bots stay green. Review URL: http://codereview.chromium.org/4612001 TBR=dhollowa@chromium.org Review URL: http://codereview.chromium.org/4641001 TBR=jar@chromium.org Review URL: http://codereview.chromium.org/4643001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65330 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 65272 - Autofill heapcheck and valgrind leak in PersonalDataManager ↵jar@chromium.org2010-11-072-0/+26
| | | | | | | | | | | | | | | | | | unit test fixed [There is a lot of red on valgrind now... so trying a revert] An early return in the WebDataService was the source of a leak in PersonalDataManagerTest.Refresh test. This fixes it. Also, some small cleanup in the test itself. BUG=61988 TEST=Memory bots stay green. Review URL: http://codereview.chromium.org/4612001 TBR=dhollowa@chromium.org Review URL: http://codereview.chromium.org/4641001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65329 0039d316-1c4b-4281-b951-d872f2087c98
* Fix heapcheck suppressions for renamed JingleChromotocolConnection.sergeyu@chromium.org2010-11-051-24/+2
| | | | | | | | | BUG=62078 TEST=heapcheck Review URL: http://codereview.chromium.org/4584002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65278 0039d316-1c4b-4281-b951-d872f2087c98
* Autofill heapcheck and valgrind leak in PersonalDataManager unit test fixeddhollowa@chromium.org2010-11-052-26/+0
| | | | | | | | | | | An early return in the WebDataService was the source of a leak in PersonalDataManagerTest.Refresh test. This fixes it. Also, some small cleanup in the test itself. BUG=61988 TEST=Memory bots stay green. Review URL: http://codereview.chromium.org/4612001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65272 0039d316-1c4b-4281-b951-d872f2087c98
* Widen an NSS invalid jump suppressionstuartmorgan@chromium.org2010-11-051-1/+0
| | | | | | | | | | | TBR=mattm BUG=60890 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/4518004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65219 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a heapcheck leak in remoting/cricketstuartmorgan@chromium.org2010-11-051-0/+22
| | | | | | | | | | | TBR=akalin BUG=62078 TEST=Green heapcheck bot Review URL: http://codereview.chromium.org/4577002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65209 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress more leaks in PersonalDataManagerTeststuartmorgan@chromium.org2010-11-051-1/+7
| | | | | | | | | | | TBR=dhollowa BUG=61988 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/4578002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65206 0039d316-1c4b-4281-b951-d872f2087c98
* Autofill heapcheck and valgrind leak in PersonalDataManager unit test ↵dhollowa@chromium.org2010-11-042-0/+20
| | | | | | | | | | | suppression BUG=61988 TEST=Memory bots go green. Review URL: http://codereview.chromium.org/4541001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65143 0039d316-1c4b-4281-b951-d872f2087c98
* Move the suppression for CallMyActivateTSMDocument() into Category 2 ↵rsesek@chromium.org2010-11-041-21/+24
| | | | | | | | | | | (intentional/won't fix). BUG=61816 TEST=no change Review URL: http://codereview.chromium.org/4435004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65112 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a new Mac valgrind leakstuartmorgan@chromium.org2010-11-041-0/+22
| | | | | | | | | | | TBR=thakis BUG=61929 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/4491001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65090 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leak in FormStructuregeorgey@chromium.org2010-11-041-49/+0
| | | | | | | | BUG=61424 TEST=valgrind tests should pass. Review URL: http://codereview.chromium.org/4104016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65076 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run DirectoryListerTest.BigDirRecursiveTest under TSantimurrrr@chromium.org2010-11-041-0/+3
| | | | | | | | BUG=61908 TBR=glider Review URL: http://codereview.chromium.org/4484001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65056 0039d316-1c4b-4281-b951-d872f2087c98
* Update the gtest exclude filter for TSan and Dr. Memory to account for test ↵timurrrr@chromium.org2010-11-042-8/+8
| | | | | | | | | | case being renamed BUG=57832 TBR=garykac Review URL: http://codereview.chromium.org/4425003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65049 0039d316-1c4b-4281-b951-d872f2087c98
* Replace spaces with underscores in keys of Mac stringtables of policiesgfeher@chromium.org2010-11-045-38/+54
| | | | | | | | | BUG=61054 TEST=PListWriterUnittest.*,PListStringsWriterUnittest.* Review URL: http://codereview.chromium.org/4318001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65039 0039d316-1c4b-4281-b951-d872f2087c98
* Disabling GPUUITest.UITestLaunchedWithOSMesa valgrind.apatrick@chromium.org2010-11-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Compiling 32-bit mesa shared libraries with -fPIC did not help. http://build.chromium.org/p/chromium.memory/builders/Linux%20Tests%20%28valgrind%29%282%29/builds/232/steps/memory%20test%3A%20ui_1/logs/stdio [----------] 1 test from GPUUITest [ RUN ] GPUUITest.UITestLaunchedWithOSMesa Started Valgrind wrapper for this test, PID=6448 [6449:6449:1270472640591:ERROR:master_preferences.cc(137)] Failed to parse /mnt/data/build/slave/chromium-rel-linux-valgrind-tests-2/build/src/sconsbuild/Release/master_preferences valgrind: mmap(0x38000000, 2039808) failed in UME with error 22 (Invalid argument). valgrind: this can be caused by executables with very large text, data or bss segments. [6397:6397:1103/142706:1270745403157:ERROR:automation_proxy.cc(461)] Disconnecting channel after error! chrome/test/ui/ui_test.cc:444: Failure Value of: tab_proxy->NavigateToURLBlockUntilNavigationsComplete( url, number_of_navigations) Actual: 0 Expected: AUTOMATION_MSG_NAVIGATION_SUCCESS Which is: 1 file:///mnt/data/build/slave/chromium-rel-linux-valgrind-tests-2/build/src/chrome/test/data/gpu/webgl.html [6397:6397:1103/142706:1270745404805:ERROR:automation_proxy.cc(448)] Automation channel has been closed; dropping message! chrome/test/ui/ui_test.cc:380: Failure Value of: automation()->GetBrowserWindowCount(&window_count) Actual: false Expected: true chrome/test/ui/ui_test.cc:495: Failure Value of: tab_proxy.get() Actual: false Expected: true chrome/test/ui/gpu_uitest.cc:37: Failure Value of: GetActiveTabTitle() Actual: L"" Expected: std::wstring(L"SUCCESS: Mesa OffScreen") Which is: L"SUCCESS: Mesa OffScreen" [6397:6397:1103/142706:1270745405095:ERROR:automation_proxy.cc(448)] Automation channel has been closed; dropping message! chrome/test/ui/ui_test.cc:263: Failure Value of: automation()->SetFilteredInet(false) Actual: false Expected: true [6397:6397:1103/142706:1270745405175:ERROR:automation_proxy.cc(448)] Automation channel has been closed; dropping message! chrome/test/ui/ui_test.cc:267: Failure Value of: automation()->GetBrowserWindowCount(&window_count) Actual: false Expected: true [6397:6397:1103/142706:1270745405232:ERROR:automation_proxy.cc(448)] Automation channel has been closed; dropping message! chrome/test/ui/ui_test.cc:288: Failure Value of: browser_proxy.get() Actual: false Expected: true [ FAILED ] GPUUITest.UITestLaunchedWithOSMesa (305498 ms) [----------] 1 test from GPUUITest (305498 ms total) TEST=none BUG=61601 Review URL: http://codereview.chromium.org/4437001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64983 0039d316-1c4b-4281-b951-d872f2087c98
* Add a suppression for CallMyActivateTSMDocument.rsesek@chromium.org2010-11-031-1/+20
| | | | | | | | | BUG=61816 TEST=Mac Valgrind goes green Review URL: http://codereview.chromium.org/4434001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64982 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress yet another wrong-locking report in NSStimurrrr@chromium.org2010-11-031-1/+13
| | | | | | | | BUG=61585 TBR=glider Review URL: http://codereview.chromium.org/4339003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64951 0039d316-1c4b-4281-b951-d872f2087c98
* Made OSMesa shared library position independent on linux.apatrick@chromium.org2010-11-031-4/+0
| | | | | | | | | | | | | | This is an attempt to fix this valgrind error: http://build.chromium.org/p/chromium.memory/builders/Linux%20Tests%20(valgrind)(2)/builds/210/steps/memory%20test:%20ui_1/logs/stdio It appears mmap might have been trying to map libosmesa.so to a fixed address. TEST=try BUG=61601 Review URL: http://codereview.chromium.org/4318005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64941 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress data races under AtExitManager until its threading nature is ↵timurrrr@chromium.org2010-11-031-0/+7
| | | | | | | | | | understood by TSan TBR=glider BUG=61753 Review URL: http://codereview.chromium.org/4383001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64921 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress an UninitCondition bug in v8::internal::preparserglider@chromium.org2010-11-031-0/+19
| | | | | | | | | BUG=61737 TBR=antonm Review URL: http://codereview.chromium.org/4374002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64909 0039d316-1c4b-4281-b951-d872f2087c98