hashar added a comment.

Looks like it is whatever test defined at extensions/Wikibase/repo/tests/phpunit/includes/Content/EntityContentTest.php:431

It eventually reach a code path in includes/site/SiteList.php which is class SiteList extends GenericArrayObject. And that explodes on line 89:

79     protected function preSetElement( $index, $site ) {
80         if ( $this->hasSite( $site->getGlobalId() ) ) {
81             $this->removeSite( $site->getGlobalId() );
82         }
83 
84         $this->byGlobalId[$site->getGlobalId()] = $index;
85         $this->byInternalId[$site->getInternalId()] = $index;
86         
87         $ids = $site->getNavigationIds();
88         foreach ( $ids as $navId ) {
89             $this->byNavigationId[$navId] = $index;   # SEGFAULT!!!!!!
90         }
91         
92         return true;
93     }

No clue how to reliably reproduce it though :-(


TASK DETAIL
https://phabricator.wikimedia.org/T142158

EMAIL PREFERENCES
https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: hashar
Cc: Stashbot, Jay8g, hashar, gerritbot, EBernhardson, matmarex, KartikMistry, Nikerabbit, daniel, hoo, bd808, greg, Paladox, dcausse, Legoktm, TerraCodes, Jdforrester-WMF, Luke081515, Krinkle, Aklapper, Lewizho99, Maathavan, D3r1ck01, Liudvikas, Izno, Wikidata-bugs, aude, zeljkofilipin, Mbch331
_______________________________________________
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs

Reply via email to