<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>131919</bug_id>
          
          <creation_ts>2014-04-20 12:25:40 -0700</creation_ts>
          <short_desc>REGRESSION (r167530): ASSERT(m_selfTime &lt;= m_totalTime) on tests that run after certain Inspector tests</short_desc>
          <delta_ts>2015-07-31 18:14:35 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>JavaScriptCore</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar, Regression</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Alexey Proskuryakov">ap</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>ggaren</cc>
    
    <cc>joepeck</cc>
    
    <cc>timothy</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1002415</commentid>
    <comment_count>0</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2014-04-20 12:25:40 -0700</bug_when>
    <thetext>js/dom/JSON-stringify.html started to ASSERT very frequently after &lt;http://trac.webkit.org/r167530&gt;:

0   com.apple.JavaScriptCore      	0x000000010abc44ea WTFCrash + 42 (Assertions.cpp:333)
1   com.apple.JavaScriptCore      	0x000000010aadb068 JSC::ProfileNode::stopProfiling() + 360 (ProfileNode.cpp:133)
2   com.apple.JavaScriptCore      	0x000000010aad46d8 JSC::Profile::forEach(void (JSC::ProfileNode::*)()) + 328 (Profile.cpp:65)
3   com.apple.JavaScriptCore      	0x000000010aad958a JSC::ProfileGenerator::stopProfiling() + 74 (ProfileGenerator.cpp:162)
4   com.apple.JavaScriptCore      	0x000000010a993c5d JSC::LegacyProfiler::stopProfiling(JSC::JSGlobalObject*) + 109 (LegacyProfiler.cpp:112)
5   com.apple.JavaScriptCore      	0x000000010a8d70f9 JSC::JSGlobalObject::~JSGlobalObject() + 121 (JSGlobalObject.cpp:188)
6   com.apple.WebCore             	0x000000010d4513b5 WebCore::JSDOMGlobalObject::~JSDOMGlobalObject() + 85 (JSDOMGlobalObject.h:43)
7   com.apple.WebCore             	0x000000010d4e7c11 WebCore::JSDOMWindowBase::~JSDOMWindowBase() + 49 (JSDOMWindowBase.h:37)
8   com.apple.WebCore             	0x000000010d4e4615 WebCore::JSDOMWindowBase::~JSDOMWindowBase() + 21 (JSDOMWindowBase.h:37)
9   com.apple.WebCore             	0x000000010d4e3885 WebCore::JSDOMWindowBase::destroy(JSC::JSCell*) + 21 (JSDOMWindowBase.cpp:84)
10  com.apple.JavaScriptCore      	0x000000010a7df626 JSC::Heap::FinalizerOwner::finalize(JSC::Handle&lt;JSC::Unknown&gt;, void*) + 70 (Heap.cpp:1309)
11  com.apple.JavaScriptCore      	0x000000010ab7f1ed JSC::WeakBlock::finalize(JSC::WeakImpl*) + 189 (WeakSetInlines.h:52)
12  com.apple.JavaScriptCore      	0x000000010ab7eb6e JSC::WeakBlock::sweep() + 158 (WeakBlock.cpp:77)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1002424</commentid>
    <comment_count>1</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2014-04-20 15:40:18 -0700</bug_when>
    <thetext>Worst of all, it&apos;s likely some preceding test that&apos;s breaking things.

How important was r167530? It broke at least two tests in mysterious ways, can we just not do this at this time?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1002428</commentid>
    <comment_count>2</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2014-04-20 16:11:47 -0700</bug_when>
    <thetext>I can reproduce with:

run-webkit-tests --child-processes=1 inspector/dom/content-flow-list.html js/dom/JSON-parse.html --v --repeat-each 10

So, it&apos;s inspector/dom/content-flow-list.html that causes this assertion failure.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1002454</commentid>
    <comment_count>3</comment_count>
    <who name="Timothy Hatcher">timothy</who>
    <bug_when>2014-04-20 21:04:57 -0700</bug_when>
    <thetext>That change is important. I&apos;ll look into the crashes / failures. Unlike the GC failure, this one is actually related to my change.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1002540</commentid>
    <comment_count>4</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2014-04-21 10:00:26 -0700</bug_when>
    <thetext>There are many tests that randomly assert because of this - at least half a dozen of js/dom tests do, apparently depending on how quickly garbage collection occurs. So, it would not make a lot of sense to mark these as flakily crashing.

Skipped all inspector/dom tests in &lt;http://trac.webkit.org/r167593&gt;, in hopes that these are the only ones that cause trouble. Also commented out flakiness expectations that we had for some of these.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1003751</commentid>
    <comment_count>5</comment_count>
    <who name="Timothy Hatcher">timothy</who>
    <bug_when>2014-04-24 13:35:01 -0700</bug_when>
    <thetext>&lt;rdar://problem/16713655&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1003753</commentid>
    <comment_count>6</comment_count>
    <who name="Timothy Hatcher">timothy</who>
    <bug_when>2014-04-24 13:37:39 -0700</bug_when>
    <thetext>I suspect https://trac.webkit.org/changeset/167647 might have fixed this.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1113942</commentid>
    <comment_count>7</comment_count>
    <who name="Joseph Pecoraro">joepeck</who>
    <bug_when>2015-07-31 18:14:35 -0700</bug_when>
    <thetext>I don&apos;t see these anymore, closing this bug.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>