result.txt 298 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562
  1. ############# Starting interpreted variant #############
  2. exclude: Slow
  3. exclude: excludes_interpreted
  4. exclude: fails_interpreted
  5. exclude: nightly
  6. exclude: fail
  7. exclude: require_backend
  8. [0.015482] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_fastinit.js
  9. [0.014479] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label3.js
  10. [0.025411] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/DoWhile.js
  11. WARNING: /home/gonzo/Github/ChakraCore/test/Conversions/ToInt32.js should be toint32.js
  12. [0.020914] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label4.js
  13. [0.047618] Passed -> /home/gonzo/Github/ChakraCore/test/Conversions/toint32.js
  14. WARNING: /home/gonzo/Github/ChakraCore/test/Conversions/ToInt32_2.js should be toint32_2.js
  15. [0.034244] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label4.js
  16. [0.028302] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label5.js
  17. WARNING: /home/gonzo/Github/ChakraCore/test/Conversions/ToInt32_2.3.baseline should be toint32_2.3.baseline
  18. [0.036185] Passed -> /home/gonzo/Github/ChakraCore/test/Conversions/toint32_2.js
  19. WARNING: /home/gonzo/Github/ChakraCore/test/Conversions/Touint32.js should be touint32.js
  20. [0.039453] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label5.js
  21. WARNING: /home/gonzo/Github/ChakraCore/test/Conversions/Touint32.baseline should be ToUInt32.baseline
  22. [0.059044] Passed -> /home/gonzo/Github/ChakraCore/test/Conversions/touint32.js
  23. [0.031489] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label6.js
  24. [0.231865] Failed -> /home/gonzo/Github/ChakraCore/test/Array/array_init2.js
  25. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized /home/gonzo/Github/ChakraCore/test/Array/array_init2.js
  26. Output:
  27. ----------------------------
  28. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  29. ----------------------------
  30. exit code: -11
  31. [0.039048] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label6.js
  32. [0.036572] Passed -> /home/gonzo/Github/ChakraCore/test/Array/sliceArrayForceBtreeBug616623.js
  33. [0.01337] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug945376SegLeftPlusSizeGreaterThanMaxArrayLen.js
  34. [0.04374] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Length.js
  35. [0.015047] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug1062870.js
  36. [0.139281] Passed -> /home/gonzo/Github/ChakraCore/test/Conversions/ImplicitConversions.js
  37. [0.023364] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Logical.js
  38. [0.028787] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug1065362.js
  39. [0.020046] Passed -> /home/gonzo/Github/ChakraCore/test/Conversions/bug1.js
  40. [0.022744] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/ParameterOrder.js
  41. [0.022677] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug4916987.js
  42. [0.02042] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Parameters.js
  43. [0.024052] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug6268659.js
  44. [0.043418] Failed -> /home/gonzo/Github/ChakraCore/test/Date/DateCtr.js
  45. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Date/DateCtr.js
  46. Output: (at line 3)
  47. ----------------------------
  48. 1974-09-30T23:00:00.000Z
  49. ----------------------------
  50. Expected Output:
  51. ----------------------------
  52. 1974-10-01T07:00:00.000Z
  53. ----------------------------
  54. exit code: 0
  55. [0.015535] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/StringCharCodeAt.js
  56. [0.017509] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/StringField.js
  57. [0.023692] Passed -> /home/gonzo/Github/ChakraCore/test/Array/ArrayBtreeBadCodeGen.js
  58. [0.035729] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/StringFromCharCode.js
  59. [0.05503] Failed -> /home/gonzo/Github/ChakraCore/test/Date/DateGetSet.js
  60. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Date/DateGetSet.js
  61. Output: (at line 0)
  62. ----------------------------
  63. toDateString : Thu Jan 01 1970
  64. ----------------------------
  65. Expected Output:
  66. ----------------------------
  67. toDateString : Wed Dec 31 1969
  68. ----------------------------
  69. exit code: 0
  70. [0.047445] Passed -> /home/gonzo/Github/ChakraCore/test/Array/SliceandConcatAlterOriginalArrayBug.js
  71. [0.014747] Passed -> /home/gonzo/Github/ChakraCore/test/Array/rawLastUsedSegmentBugInFloatArray.js
  72. [0.033378] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/StringSubstring.js
  73. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/Switch.js should be switch.js
  74. [0.037949] Passed -> /home/gonzo/Github/ChakraCore/test/Array/ArrayElementMissingValueSetToZero.js
  75. [0.06593] Failed -> /home/gonzo/Github/ChakraCore/test/Date/DateParse.js
  76. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Date/DateParse.js
  77. Output: (at line 1)
  78. ----------------------------
  79. 808227000000
  80. ----------------------------
  81. Expected Output:
  82. ----------------------------
  83. 808259400000
  84. ----------------------------
  85. exit code: 0
  86. [0.01384] Passed -> /home/gonzo/Github/ChakraCore/test/Array/TryGrowHeadSegmentBug.js
  87. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/Switch.baseline should be switch.baseline
  88. [0.041939] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/switch.js
  89. [0.013433] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_init2.js
  90. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/Switch2.baseline should be switch2.baseline
  91. [0.025318] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Switch2.js
  92. [0.023076] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/typeof.js
  93. [0.036705] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_ctr.js
  94. [0.014017] Failed -> /home/gonzo/Github/ChakraCore/test/Array/array_ctr.js
  95. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -arrayValidate /home/gonzo/Github/ChakraCore/test/Array/array_ctr.js
  96. Output: (at line 0)
  97. ----------------------------
  98. Invalid Flag : -arrayValidate
  99. ----------------------------
  100. Expected Output:
  101. ----------------------------
  102. 0
  103. ----------------------------
  104. exit code: 0
  105. [0.046713] Passed -> /home/gonzo/Github/ChakraCore/test/Array/arr_bailout.js
  106. [0.032696] Passed -> /home/gonzo/Github/ChakraCore/test/Array/concat1.js
  107. [0.179334] Failed -> /home/gonzo/Github/ChakraCore/test/Date/DateParse2.js
  108. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Date/DateParse2.js
  109. Output: (at line 2)
  110. ----------------------------
  111. Date string: Sat Feb 02 63524 01:02:03 GMT+0100 (CEST)
  112. ----------------------------
  113. Expected Output:
  114. ----------------------------
  115. Date string: Tue Feb 02 -2012 01:02:03 GMT-0800 (Pacific Standard Time)
  116. ----------------------------
  117. exit code: 0
  118. [0.054427] Passed -> /home/gonzo/Github/ChakraCore/test/Date/toISO_3.js
  119. [0.074927] Passed -> /home/gonzo/Github/ChakraCore/test/Array/concat2.js
  120. [0.016834] Passed -> /home/gonzo/Github/ChakraCore/test/Array/delete.js
  121. [0.026154] Passed -> /home/gonzo/Github/ChakraCore/test/Array/es5array_push.js
  122. [0.015236] Passed -> /home/gonzo/Github/ChakraCore/test/Array/ldindex.js
  123. [0.263458] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/typeofcombi.js
  124. [0.0143] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug612012.js
  125. [0.022505] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/TypePromotion.js
  126. [0.014117] Passed -> /home/gonzo/Github/ChakraCore/test/Array/SegmentMapFlagResetInJSArrayConstructor.js
  127. [0.01538] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/UndefinedVsNull.js
  128. [0.064618] Passed -> /home/gonzo/Github/ChakraCore/test/Array/LastUsedSegmentHasNULLElement.js
  129. [0.06477] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/With.js
  130. [0.028654] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/withBug940841.js
  131. [0.042855] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_length.js
  132. [0.014631] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/withBug940841_2.js
  133. [0.025104] Passed -> /home/gonzo/Github/ChakraCore/test/Array/join2.js
  134. [0.021148] Passed -> /home/gonzo/Github/ChakraCore/test/Array/missing.js
  135. [0.056975] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/With2.js
  136. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/Witheval.js should be witheval.js
  137. [0.021845] Passed -> /home/gonzo/Github/ChakraCore/test/Array/pop1.js
  138. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/Witheval.baseline should be witheval.baseline
  139. [0.022544] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/witheval.js
  140. [0.027478] Passed -> /home/gonzo/Github/ChakraCore/test/Array/pop2.js
  141. [0.024363] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/TernaryOperator.js
  142. [0.022649] Passed -> /home/gonzo/Github/ChakraCore/test/Array/pop3.js
  143. [0.019364] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/DeleteProperty1.js
  144. [0.028661] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Accessors.js
  145. [0.039721] Passed -> /home/gonzo/Github/ChakraCore/test/Array/push1.js
  146. [0.025472] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/DefProp.js
  147. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/ScopedAccessors.js should be scopedaccessors.js
  148. WARNING: /home/gonzo/Github/ChakraCore/test/Basics/ScopedAccessors.baseline should be scopedaccessors.baseline
  149. [0.020303] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/scopedaccessors.js
  150. [0.102469] Passed -> /home/gonzo/Github/ChakraCore/test/Array/push2.js
  151. [0.073669] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/flags.js
  152. [0.022914] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Branching.js
  153. [0.033184] Passed -> /home/gonzo/Github/ChakraCore/test/Array/push3.js
  154. [0.023814] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/inlinecache.js
  155. [0.021018] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/scan.js
  156. [0.050381] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/enum.js
  157. [0.017946] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/with3.js
  158. [0.117439] Passed -> /home/gonzo/Github/ChakraCore/test/Array/reverse1.js
  159. [0.038718] Passed -> /home/gonzo/Github/ChakraCore/test/Array/reverse2.js
  160. [0.048819] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/cross_site_accessor_main.js
  161. [0.038566] Passed -> /home/gonzo/Github/ChakraCore/test/Array/shift_unshift.js
  162. [0.030806] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/bug650104.js
  163. [0.02513] Passed -> /home/gonzo/Github/ChakraCore/test/Array/toString.js
  164. [0.025081] Passed -> /home/gonzo/Github/ChakraCore/test/Boolean/simple1.js
  165. [0.046333] Passed -> /home/gonzo/Github/ChakraCore/test/Array/toString.js
  166. [0.093345] Passed -> /home/gonzo/Github/ChakraCore/test/Boolean/simple2.js
  167. [0.020458] Passed -> /home/gonzo/Github/ChakraCore/test/Boolean/wrappedobj.js
  168. [0.078902] Failed -> /home/gonzo/Github/ChakraCore/test/Array/toLocaleString.js
  169. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Array/toLocaleString.js
  170. Output: (at line 16)
  171. ----------------------------
  172. 0.000, 1.230, NaN, true, abc, [object Object], , 0.000, 1.000, 2.000
  173. ----------------------------
  174. Expected Output:
  175. ----------------------------
  176. 0.00, 1.23, NaN, true, abc, [object Object], , 0.00, 1.00, 2.00
  177. ----------------------------
  178. exit code: 0
  179. [0.060445] Passed -> /home/gonzo/Github/ChakraCore/test/Boolean/Equals.js
  180. [0.076202] Failed -> /home/gonzo/Github/ChakraCore/test/Array/toLocaleString.js
  181. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ForceES5Array /home/gonzo/Github/ChakraCore/test/Array/toLocaleString.js
  182. Output: (at line 16)
  183. ----------------------------
  184. 0.000, 1.230, NaN, true, abc, [object Object], , 0.000, 1.000, 2.000
  185. ----------------------------
  186. Expected Output:
  187. ----------------------------
  188. 0.00, 1.23, NaN, true, abc, [object Object], , 0.00, 1.00, 2.00
  189. ----------------------------
  190. exit code: 0
  191. [0.035017] Passed -> /home/gonzo/Github/ChakraCore/test/Boolean/property_and_index_of_boolean.js
  192. [0.021354] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug602.js
  193. [0.027932] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug764.js
  194. [0.038955] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/withnonativeApplyOptimizationBug3433559.js
  195. [0.026359] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/Win8_486977_BranchStrictEqual.js
  196. [0.044633] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/Win8_459638.js
  197. [0.130375] Failed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug_OS_1197716.js
  198. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -deferparse /home/gonzo/Github/ChakraCore/test/Bugs/bug_OS_1197716.js
  199. Output:
  200. ----------------------------
  201. ----------------------------
  202. exit code: -11
  203. [0.015506] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/addexception.js
  204. [0.014903] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/regalloc.js
  205. [0.093898] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/randombug.js
  206. [0.147499] Failed -> /home/gonzo/Github/ChakraCore/test/Bugs/blue_532460.js
  207. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -MaxinterpretCount:1 -MaxSimpleJITRunCount:0 -loopinterpretcount:1 -force:deferparse /home/gonzo/Github/ChakraCore/test/Bugs/blue_532460.js
  208. Output:
  209. ----------------------------
  210. ----------------------------
  211. exit code: -11
  212. [0.484172] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug56026_minimal.js
  213. [0.425492] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug56026_minimalWithProperties.js
  214. [1.547268] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_slice.js
  215. [0.028194] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_slice2.js
  216. [0.02389] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_sort.js
  217. [0.04192] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_includes.js
  218. [0.035973] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_sort2.js
  219. [0.024086] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_sort3.js
  220. [0.008145] Failed -> /home/gonzo/Github/ChakraCore/test/Array/array_sort3.js
  221. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -arrayValidate /home/gonzo/Github/ChakraCore/test/Array/array_sort3.js
  222. Output: (at line 0)
  223. ----------------------------
  224. Invalid Flag : -arrayValidate
  225. ----------------------------
  226. Expected Output:
  227. ----------------------------
  228. Scenario 0
  229. ----------------------------
  230. exit code: 0
  231. [0.036622] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice.js
  232. [0.034786] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice_double.js
  233. [0.006704] Failed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice.js
  234. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -arrayValidate /home/gonzo/Github/ChakraCore/test/Array/array_splice.js
  235. Output: (at line 0)
  236. ----------------------------
  237. Invalid Flag : -arrayValidate
  238. ----------------------------
  239. Expected Output:
  240. ----------------------------
  241. 0,1,2,3,4,5,6
  242. ----------------------------
  243. exit code: 0
  244. [0.039377] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice1.js
  245. [0.345297] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug56026_nested.js
  246. [0.095267] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice2.js
  247. [0.028252] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice3.js
  248. [0.025262] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice4.js
  249. [0.042032] Passed -> /home/gonzo/Github/ChakraCore/test/Array/sparsearray.js
  250. WARNING: /home/gonzo/Github/ChakraCore/test/Array/array_lastIndexOf.js should be array_lastindexof.js
  251. WARNING: /home/gonzo/Github/ChakraCore/test/Array/array_lastIndexOf.baseline should be array_lastindexof.baseline
  252. [0.204495] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_lastindexof.js
  253. [0.260305] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_indexOf.js
  254. [0.741285] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug56026_trycatch.js
  255. [0.020685] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/blue_245702.js
  256. [0.023101] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug547302.js
  257. [0.022557] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug215238.mul-53-ovf.js
  258. [0.02256] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug215238-shrua.js
  259. [0.056139] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug215238.shrua-2.js
  260. [0.02082] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug435809.js
  261. [0.287986] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_indexOf.js
  262. [0.0149] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug594298.js
  263. [0.019839] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_indexOfSparse.js
  264. [0.018398] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug661952.js
  265. [0.018339] Passed -> /home/gonzo/Github/ChakraCore/test/Array/negindex.js
  266. [0.018833] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug724121.js
  267. [0.01953] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_forin.js
  268. [0.016776] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_literal.js
  269. [0.044067] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/deserializationbug339404.js
  270. [0.020095] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen1.js
  271. [0.013447] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug843670.js
  272. [0.020158] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen1.js
  273. [0.012909] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug934443.js
  274. [0.015275] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen2.js
  275. [0.015054] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen3.js
  276. [0.020292] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen4.js
  277. [0.014584] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen5.js
  278. [0.01689] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen6.js
  279. [0.02391] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen7.js
  280. [0.128112] Failed -> /home/gonzo/Github/ChakraCore/test/Bugs/vso_os_1091425.js
  281. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Bugs/vso_os_1091425.js
  282. Output:
  283. ----------------------------
  284. ----------------------------
  285. exit code: -11
  286. [0.014525] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug1092916.js
  287. [0.019787] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativearray_gen8.js
  288. [0.014993] Passed -> /home/gonzo/Github/ChakraCore/test/Array/arrlit.js
  289. [0.026311] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/blue_1096569.js
  290. [0.032318] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/blue_1086262.js
  291. [0.043518] Passed -> /home/gonzo/Github/ChakraCore/test/Array/protoLookup.js
  292. [0.017961] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug1288931.js
  293. [0.013674] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/OS_1362136.js
  294. [0.013366] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug_OS_4683246.js
  295. [0.045303] Passed -> /home/gonzo/Github/ChakraCore/test/Array/protoLookup_native.js
  296. [0.025646] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/OS_5248645.js
  297. [0.023405] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/OS_5553123.js
  298. [0.052121] Passed -> /home/gonzo/Github/ChakraCore/test/Array/protoLookupWithGetters.js
  299. [0.014422] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_apply.js
  300. [0.017178] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/symbol_tostring.js
  301. [0.015583] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/default_undodefer.js
  302. WARNING: /home/gonzo/Github/ChakraCore/test/Bugs/bug_resetisdead.js should be Bug_resetisdead.js
  303. [0.018667] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativeArrayPushInlining.js
  304. [0.013441] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/Bug_resetisdead.js
  305. [0.013058] Passed -> /home/gonzo/Github/ChakraCore/test/Array/reverse_native.js
  306. [0.015502] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/bug_es5array.js
  307. [0.02415] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativeFloatArray_shift_unshift.js
  308. [0.014717] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativeFloatArray_sort.js
  309. [0.036291] Passed -> /home/gonzo/Github/ChakraCore/test/Bugs/simpletypehandler-property-deletion.js
  310. [0.015747] Passed -> /home/gonzo/Github/ChakraCore/test/Array/missingItemFastPathCheck.js
  311. [0.016023] Failed -> /home/gonzo/Github/ChakraCore/test/Bugs/HasOnlyWritableDataProperties-cross-context.js
  312. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -nonative /home/gonzo/Github/ChakraCore/test/Bugs/HasOnlyWritableDataProperties-cross-context.js
  313. Output:
  314. ----------------------------
  315. TypeError: Unable to get property 'setUp' of undefined or null reference
  316. at f() (hasonlywritabledataproperties-cross-context.js:11:5)
  317. at Global code (hasonlywritabledataproperties-cross-context.js:16:1)
  318. ----------------------------
  319. exit code: 0
  320. [0.013724] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_opts.js
  321. [0.020486] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/cachedscope_1.js
  322. [0.015549] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativeIntPop.js
  323. [0.016493] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/cachedscope_2.js
  324. [0.016042] Passed -> /home/gonzo/Github/ChakraCore/test/Array/nativeFloatPop.js
  325. [0.012965] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure.js
  326. [0.018406] Passed -> /home/gonzo/Github/ChakraCore/test/Array/popImplicitCall.js
  327. [0.01455] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure-callback.js
  328. [0.013709] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure_multiple_1.js
  329. [0.052096] Passed -> /home/gonzo/Github/ChakraCore/test/Array/array_splice_515632.js
  330. [0.01567] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure_multiple_2.js
  331. [0.016703] Passed -> /home/gonzo/Github/ChakraCore/test/Array/InlineArrayPopWithIntConstSrc.js
  332. [0.019758] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure_binding.js
  333. [0.017688] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure_binding_2.js
  334. [0.025158] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure-funcexpr-eval.js
  335. [0.073115] Passed -> /home/gonzo/Github/ChakraCore/test/Array/FailToSetLength.js
  336. [0.018183] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/closure-qmark.js
  337. [0.026598] Passed -> /home/gonzo/Github/ChakraCore/test/Array/foreach_nativearray_change.js
  338. WARNING: /home/gonzo/Github/ChakraCore/test/Array/newFromArgs.js should be newfromargs.js
  339. [0.023646] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/initcachedscope.js
  340. WARNING: /home/gonzo/Github/ChakraCore/test/Array/newFromArgs.baseline should be newfromargs.baseline
  341. [0.018389] Passed -> /home/gonzo/Github/ChakraCore/test/Array/newfromargs.js
  342. [0.017814] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/invalcachedscope.js
  343. [0.013742] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug945376SizeBoundStartSeg.js
  344. [0.01256] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memop_lifetime_bug.js
  345. [0.044997] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memset.js
  346. [0.018493] Failed -> /home/gonzo/Github/ChakraCore/test/Array/memset_simd.js
  347. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -mic:1 -off:simplejit -mmoc:0 -off:JITLoopBody -simdjs -simd128typespec /home/gonzo/Github/ChakraCore/test/Array/memset_simd.js
  348. Output:
  349. ----------------------------
  350. ReferenceError: 'SIMD' is undefined
  351. at Global code (memset_simd.js:9:1)
  352. ----------------------------
  353. exit code: 0
  354. [0.014679] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memset2.js
  355. [0.142442] Failed -> /home/gonzo/Github/ChakraCore/test/Closures/invalcachedscope.js
  356. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized /home/gonzo/Github/ChakraCore/test/Closures/invalcachedscope.js
  357. Output:
  358. ----------------------------
  359. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  360. ----------------------------
  361. exit code: -11
  362. [0.018397] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/invalcachedscope.js
  363. [0.047848] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memcopy.js
  364. [0.038622] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/bug_OS_2299723.js
  365. [0.014496] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/bug_OS_2671095.js
  366. [0.05926] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memcopy.js
  367. [0.015592] Passed -> /home/gonzo/Github/ChakraCore/test/Closures/bug_OS_2903083.js
  368. [0.013452] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memcopy_length_bug.js
  369. [0.018203] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/DoLoop.js
  370. [0.013718] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memcopy_missing_values.js
  371. [0.014371] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/DoLoop2.js
  372. [0.037705] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memop_alias.js
  373. [0.019792] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/DoLoop3.js
  374. [0.02384] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memop_field.js
  375. [0.024527] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/jump.js
  376. [0.015889] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memop_slot.js
  377. [0.020065] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/ForLoop.js
  378. [0.01472] Passed -> /home/gonzo/Github/ChakraCore/test/Array/memop_bounds_check.js
  379. [0.014001] Passed -> /home/gonzo/Github/ChakraCore/test/Array/bug4587739.js
  380. [0.020658] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/Array.js
  381. [0.014837] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/ArrayConcat.js
  382. [0.012519] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/arrayinit.js
  383. [0.068254] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/IdsWithEscapes.js
  384. [0.189477] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/ForLoop2.js
  385. [0.029422] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/ArrayResize.js
  386. [0.013978] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/WhileLoop.js
  387. [0.021665] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/DirectCall.js
  388. [0.024202] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/WhileLoop2.js
  389. [0.026722] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInMisc.js
  390. [0.021886] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInObjectDelete.js
  391. [0.060622] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/equal.js
  392. [0.025952] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/equal_object.js
  393. [0.051042] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInObjectAdd.js
  394. [0.014621] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label1.js
  395. [0.012421] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label1.js
  396. [0.022492] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInObjectAddDelete.js
  397. [0.013427] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label2.js
  398. [0.012498] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label2.js
  399. [0.012565] Passed -> /home/gonzo/Github/ChakraCore/test/Basics/label3.js
  400. [0.025035] Passed -> /home/gonzo/Github/ChakraCore/test/Function/crosssite_bind_main.js
  401. [0.024413] Failed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/GlobalFunctions.js
  402. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/GlobalFunctions/GlobalFunctions.js
  403. Output: (at line 9)
  404. ----------------------------
  405. Â
  406. ----------------------------
  407. Expected Output:
  408. ----------------------------
  409. ©
  410. ----------------------------
  411. exit code: 0
  412. [0.131644] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInPrimitive.js
  413. [0.032037] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/eval1.js
  414. [0.018066] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/evalNullsNewlines.js
  415. [0.034933] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/evalreturns.js
  416. [0.021045] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/evalDeferred.js
  417. [0.019842] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/eval-strict-delete.js
  418. [0.021053] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/parseFloat.js
  419. [0.049976] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/parseInt.js
  420. [0.024373] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/parseShortCut.js
  421. [0.015283] Failed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/InternalToString.js
  422. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/GlobalFunctions/InternalToString.js
  423. Output: (at line 4)
  424. ----------------------------
  425. Test call ToString - date: thu jan 01 1970 01:00:20 gmt+0100 (cest)
  426. ----------------------------
  427. Expected Output:
  428. ----------------------------
  429. Test call ToString - date: wed dec 31 1969 16:00:20 gmt-0800 (pacific standard time)
  430. ----------------------------
  431. exit code: 0
  432. [0.016603] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/ParseInt1.js
  433. [0.012979] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/deferunicode.js
  434. [0.014712] Passed -> /home/gonzo/Github/ChakraCore/test/GlobalFunctions/toString.js
  435. [0.020302] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/t0.js
  436. [0.019647] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/t1.js
  437. [0.021948] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/t2.js
  438. [0.020399] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/t3.js
  439. [0.018062] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/t4.js
  440. [0.013956] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/t5.js
  441. [0.018907] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/test6.js
  442. [0.030252] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/TypePropertyCache_CrossContext.js
  443. WARNING: /home/gonzo/Github/ChakraCore/test/InlineCaches/Getter_sideeffect.js should be getter_sideeffect.js
  444. [0.018387] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/getter_sideeffect.js
  445. WARNING: /home/gonzo/Github/ChakraCore/test/InlineCaches/PrototypeChainModifications.js should be prototypeChainModifications.js
  446. WARNING: /home/gonzo/Github/ChakraCore/test/InlineCaches/PrototypeChainModifications.baseline should be prototypeChainModifications.baseline
  447. [0.017567] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/prototypeChainModifications.js
  448. [0.016665] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/inlineLocalCacheWithoutProperty.js
  449. [0.014324] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/writable1.js
  450. [0.019834] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/writable2.js
  451. [0.025427] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/writable3.js
  452. [0.019906] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/BigDictionaryTypeHandler.js
  453. [0.218171] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/addFldFastPath.js
  454. [0.028312] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/MissingPropertyCache1.js
  455. [0.015632] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/MissingPropertyCache2.js
  456. [0.015125] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/MissingPropertyCache3.js
  457. [0.015999] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/instanceOfCacheCrossRegistration.js
  458. [0.024266] Passed -> /home/gonzo/Github/ChakraCore/test/InlineCaches/bug_vso_os_1206083.js
  459. [0.07243] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/jx1.js
  460. [1.035979] Failed -> /home/gonzo/Github/ChakraCore/test/JSON/jx2.js
  461. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/JSON/jx2.js
  462. Output: (at line 132)
  463. ----------------------------
  464. "/test ze\u0000ro\u000bString\n_u4:a_u2:¼_u1:\u000e_u2clean:Â
  465. ----------------------------
  466. Expected Output:
  467. ----------------------------
  468. "/test ze\u0000ro\u000bString\n_u4:a_u2:¼_u1:\u000e_u2clean:�"
  469. ----------------------------
  470. exit code: 0
  471. [0.058695] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/space.js
  472. [0.031861] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/simple.js
  473. [0.048171] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/simple.stringify.js
  474. WARNING: /home/gonzo/Github/ChakraCore/test/JSON/parseWithGC.js should be parseWithGc.js
  475. [0.089888] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/parseWithGc.js
  476. [0.03951] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/jsonCache.js
  477. [0.053394] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/jsonCache.js
  478. [0.023333] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/json_parse_Blue_548957.js
  479. [0.024982] Passed -> /home/gonzo/Github/ChakraCore/test/JSON/jsonParseWalkTest.js
  480. [0.032098] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/a.js
  481. [0.024162] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/b.js
  482. [0.020133] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/c.js
  483. [0.02089] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/d.js
  484. [0.015272] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/d.js
  485. [0.014981] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/e.js
  486. [0.014229] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/e.js
  487. [0.013102] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/f.js
  488. [0.014285] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/g.js
  489. [0.030908] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/h.js
  490. [0.0151] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/i.js
  491. [0.013195] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/j.js
  492. [0.01639] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/k.js
  493. [0.013407] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/l.js
  494. [0.013398] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/m.js
  495. [0.013389] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/n.js
  496. [0.016339] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/o.js
  497. [0.021667] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/p.js
  498. [0.025678] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/q.js
  499. [0.060841] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/redeclaration.js
  500. [0.043231] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/redeclaration.js
  501. [0.01686] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/r.js
  502. [0.066292] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/AssignmentToConst.js
  503. [0.025324] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/DeclOutofBlock.js
  504. [0.029973] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/DeclOutofBlock.js
  505. [0.02659] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/defer1.js
  506. [0.027901] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/defer2.js
  507. [0.060891] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/defer3.js
  508. [0.017167] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/defer4.js
  509. [3.620604] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/enumeration_adddelete.js
  510. [0.01882] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/defer5.js
  511. WARNING: /home/gonzo/Github/ChakraCore/test/ControlFlow/forInArrayAddv3.baseline should be forinArrayAddv3.baseline
  512. [0.024316] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInArrayAdd.js
  513. [0.023564] Passed -> /home/gonzo/Github/ChakraCore/test/ControlFlow/forInObjectWithPrototype.js
  514. [0.013742] Passed -> /home/gonzo/Github/ChakraCore/test/Math/atan.js
  515. [0.018122] Passed -> /home/gonzo/Github/ChakraCore/test/Math/atan2.js
  516. [0.013501] Passed -> /home/gonzo/Github/ChakraCore/test/Math/cos.js
  517. [0.013843] Passed -> /home/gonzo/Github/ChakraCore/test/Math/exp.js
  518. [0.013514] Passed -> /home/gonzo/Github/ChakraCore/test/Math/log.js
  519. [0.015126] Passed -> /home/gonzo/Github/ChakraCore/test/Math/neg.js
  520. [0.174233] Failed -> /home/gonzo/Github/ChakraCore/test/LetConst/tdz1.js
  521. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/LetConst/tdz1.js
  522. Output:
  523. ----------------------------
  524. ReferenceError: Use before declaration
  525. local x
  526. ReferenceError: Use before declaration
  527. local x
  528. ReferenceError: Use before declaration
  529. a is a string
  530. did not delete a
  531. did not delete a
  532. ReferenceError: Use before declaration
  533. ReferenceError: Use before declaration
  534. undefined
  535. ReferenceError: Use before declaration
  536. ReferenceError: Use before declaration
  537. ReferenceError: Use before declaration
  538. ReferenceError: Use before declaration
  539. ReferenceError: Use before declaration
  540. ReferenceError: Use before declaration
  541. ReferenceError: Use before declaration
  542. ReferenceError: Use before declaration
  543. ReferenceError: Use before declaration
  544. ReferenceError: Use before declaration
  545. false
  546. ReferenceError: Use before declaration
  547. false
  548. string
  549. false
  550. ReferenceError: Use before declaration
  551. false
  552. string
  553. ReferenceError: Use before declaration
  554. function () { write(y = 123); }
  555. 123
  556. 123
  557. ReferenceError: Use before declaration
  558. function () { write(y = 123); }
  559. 123
  560. 123
  561. ReferenceError: Use before declaration
  562. ----------------------------
  563. exit code: -11
  564. [0.016326] Failed -> /home/gonzo/Github/ChakraCore/test/Math/pow.js
  565. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Math/pow.js
  566. Output: (at line 0)
  567. ----------------------------
  568. pow(0 , -3) != -Infinity
  569. ----------------------------
  570. Expected Output:
  571. ----------------------------
  572. done
  573. ----------------------------
  574. exit code: 0
  575. [0.019204] Passed -> /home/gonzo/Github/ChakraCore/test/Math/min.js
  576. [0.020784] Passed -> /home/gonzo/Github/ChakraCore/test/Math/max.js
  577. [0.060851] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/tdz2.js
  578. [0.021672] Passed -> /home/gonzo/Github/ChakraCore/test/Math/miscellaneous.js
  579. [0.045017] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval1.js
  580. [0.05771] Passed -> /home/gonzo/Github/ChakraCore/test/Math/round.js
  581. [0.017234] Passed -> /home/gonzo/Github/ChakraCore/test/Math/ceilfloor.js
  582. [0.050473] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval1.js
  583. [0.015004] Passed -> /home/gonzo/Github/ChakraCore/test/Math/ceilfloor.js
  584. [0.013278] Passed -> /home/gonzo/Github/ChakraCore/test/Math/sin.js
  585. [0.020391] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/scopegen1.js
  586. [0.017055] Passed -> /home/gonzo/Github/ChakraCore/test/Math/sqrt.js
  587. [0.029446] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/constreassign1.js
  588. [0.018626] Passed -> /home/gonzo/Github/ChakraCore/test/Math/tan.js
  589. [0.027424] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/mixedscope.js
  590. [0.020518] Passed -> /home/gonzo/Github/ChakraCore/test/Math/constants.js
  591. [0.025016] Passed -> /home/gonzo/Github/ChakraCore/test/Math/clz32.js
  592. [0.042266] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/for-loop.js
  593. [0.056566] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/for-loop.js
  594. [0.036427] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/letvar.js
  595. [0.024909] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval_letconst.js
  596. [0.018995] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval_letconst.js
  597. [0.019062] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval_letconst.js
  598. [0.018999] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval_letconst.js
  599. [0.02622] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/arguments.js
  600. [0.021615] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/seal.js
  601. [0.021732] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/seal1.js
  602. [0.021609] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/seal2.js
  603. [0.024377] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/dop.js
  604. [0.024083] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/dop1.js
  605. [0.022967] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/delete.js
  606. [0.027242] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/eval_fncdecl.js
  607. [0.528679] Passed -> /home/gonzo/Github/ChakraCore/test/Miscellaneous/HasOnlyWritableDataPropertiesCache.js
  608. [0.007344] Failed -> /home/gonzo/Github/ChakraCore/test/Miscellaneous/longstring.js
  609. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -recyclerVerify /home/gonzo/Github/ChakraCore/test/Miscellaneous/longstring.js
  610. Output:
  611. ----------------------------
  612. Invalid Flag : -recyclerVerify
  613. Usage: ch <source file>
  614. [flaglist] is not supported for Release mode
  615. ----------------------------
  616. exit code: 0
  617. [0.012606] Passed -> /home/gonzo/Github/ChakraCore/test/Miscellaneous/etwtest.js
  618. [0.013561] Passed -> /home/gonzo/Github/ChakraCore/test/Miscellaneous/evalAlias.js
  619. [0.133187] Failed -> /home/gonzo/Github/ChakraCore/test/LetConst/storeundecl_multiscript.js
  620. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/LetConst/storeundecl_multiscript.js
  621. Output:
  622. ----------------------------
  623. ----------------------------
  624. exit code: -11
  625. [0.017743] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/storeundecl_eval.js
  626. [0.019837] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/with.js
  627. [0.020106] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/unassignedconst.js
  628. [0.018457] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/unassignedconst.js
  629. [0.116529] Passed -> /home/gonzo/Github/ChakraCore/test/Miscellaneous/SetTimeout.js
  630. [0.016299] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/letconst_undeclinlinecache.js
  631. [0.015265] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/loopinit.js
  632. [0.078591] Passed -> /home/gonzo/Github/ChakraCore/test/Number/toString.js
  633. [0.037823] Passed -> /home/gonzo/Github/ChakraCore/test/LetConst/letlet.js
  634. [0.018683] Passed -> /home/gonzo/Github/ChakraCore/test/Number/floatcmp.js
  635. [0.022313] Passed -> /home/gonzo/Github/ChakraCore/test/Number/NaN.js
  636. [0.026801] Passed -> /home/gonzo/Github/ChakraCore/test/Number/integer.js
  637. [0.024192] Passed -> /home/gonzo/Github/ChakraCore/test/Number/toUint16.js
  638. [0.281947] Passed -> /home/gonzo/Github/ChakraCore/test/Number/boundaries.js
  639. [0.015343] Passed -> /home/gonzo/Github/ChakraCore/test/Number/NoSse.js
  640. [0.033139] Passed -> /home/gonzo/Github/ChakraCore/test/Number/property_and_index_of_number.js
  641. [0.471804] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/construct.js
  642. [0.02661] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/getclass.js
  643. [0.203031] Passed -> /home/gonzo/Github/ChakraCore/test/Object/constructor.js
  644. [0.177669] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/length2.js
  645. [0.026607] Passed -> /home/gonzo/Github/ChakraCore/test/Object/constructor1.js
  646. [0.014602] Passed -> /home/gonzo/Github/ChakraCore/test/Object/expandos.js
  647. [0.020037] Passed -> /home/gonzo/Github/ChakraCore/test/Object/hasOwnProperty.js
  648. [0.016768] Passed -> /home/gonzo/Github/ChakraCore/test/Object/isEnumerable.js
  649. [0.107958] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/LibLength.js
  650. [0.022145] Passed -> /home/gonzo/Github/ChakraCore/test/Object/isPrototypeOf.js
  651. [0.024445] Passed -> /home/gonzo/Github/ChakraCore/test/Object/Object.js
  652. [0.047731] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/noargs.js
  653. WARNING: /home/gonzo/Github/ChakraCore/test/Lib/toString.js should be tostring.js
  654. [0.050874] Passed -> /home/gonzo/Github/ChakraCore/test/Object/null.js
  655. [0.046718] Passed -> /home/gonzo/Github/ChakraCore/test/Object/propertyDescriptorNonObject.js
  656. [0.050865] Passed -> /home/gonzo/Github/ChakraCore/test/Object/toLocaleString2.js
  657. [0.015541] Passed -> /home/gonzo/Github/ChakraCore/test/Object/toString1.js
  658. [0.0134] Passed -> /home/gonzo/Github/ChakraCore/test/Object/toString2.js
  659. [0.014247] Passed -> /home/gonzo/Github/ChakraCore/test/Object/newobj.js
  660. [0.205972] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/tostring.js
  661. [0.01854] Passed -> /home/gonzo/Github/ChakraCore/test/Object/regex.js
  662. [0.017641] Passed -> /home/gonzo/Github/ChakraCore/test/Object/var.js
  663. [0.056579] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/forin_lib.js
  664. [0.095695] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/uri.js
  665. [0.013304] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/error.js
  666. [0.019297] Passed -> /home/gonzo/Github/ChakraCore/test/Lib/workingset.js
  667. [0.019832] Passed -> /home/gonzo/Github/ChakraCore/test/Math/abs.js
  668. [0.01981] Passed -> /home/gonzo/Github/ChakraCore/test/Math/acos.js
  669. [0.019561] Passed -> /home/gonzo/Github/ChakraCore/test/Math/asin.js
  670. [0.023898] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/fastRegexCaptures.js
  671. [0.04279] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/regex1.js
  672. [0.027811] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/regexSplitOptimization.js
  673. [0.033699] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/match_global.js
  674. [0.14087] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/configurableTest.js
  675. [0.589506] Passed -> /home/gonzo/Github/ChakraCore/test/Object/Slow.js
  676. [0.017247] Passed -> /home/gonzo/Github/ChakraCore/test/Object/NumericPropertyIsEnumerable.js
  677. [0.053223] Passed -> /home/gonzo/Github/ChakraCore/test/Object/defineProperty.js
  678. [0.156796] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/rx1.js
  679. [0.016278] Passed -> /home/gonzo/Github/ChakraCore/test/Object/getOwnPropertyDescriptor.js
  680. [0.027574] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/regex_replacefn.js
  681. [0.013552] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/regex_replacefn_this.js
  682. [0.040631] Passed -> /home/gonzo/Github/ChakraCore/test/Object/objectCreationOptimizations.js
  683. [0.0141] Passed -> /home/gonzo/Github/ChakraCore/test/Object/multivardecl.js
  684. [0.020825] Passed -> /home/gonzo/Github/ChakraCore/test/Object/propertyStrings.js
  685. [0.061155] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/class-case.js
  686. [0.023869] Passed -> /home/gonzo/Github/ChakraCore/test/Object/forinenumcache.js
  687. [0.017994] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/prioritizedalternatives.js
  688. [0.016242] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/multiline.js
  689. [0.013954] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/regex_assertion.js
  690. [0.027584] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/regex_deviations.js
  691. [0.014121] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/undefined_option.js
  692. [0.016055] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/toString.js
  693. [0.014744] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/trigram.js
  694. [0.157751] Failed -> /home/gonzo/Github/ChakraCore/test/Object/forinnonenumerableshadowing.js
  695. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -args summary -endargs /home/gonzo/Github/ChakraCore/test/Object/forinnonenumerableshadowing.js
  696. Output:
  697. ----------------------------
  698. ----------------------------
  699. exit code: -11
  700. [0.015722] Passed -> /home/gonzo/Github/ChakraCore/test/Object/forinfastpath.js
  701. [0.039313] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/nul_character.js
  702. [0.01632] Passed -> /home/gonzo/Github/ChakraCore/test/Object/forIn.error.js
  703. [0.08293] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/replace.js
  704. [0.019623] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/BolEol.js
  705. [0.04325] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/crossContext.js
  706. [0.042038] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/crossContext.js
  707. [0.026536] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/properties.js
  708. [0.014171] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/NotBOILiteral2.js
  709. [0.007184] Failed -> /home/gonzo/Github/ChakraCore/test/Regex/BoiHardFail.js
  710. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -regexDebug /home/gonzo/Github/ChakraCore/test/Regex/BoiHardFail.js
  711. Output: (at line 0)
  712. ----------------------------
  713. Invalid Flag : -regexDebug
  714. ----------------------------
  715. Expected Output:
  716. ----------------------------
  717. REGEX AST /^token/ {
  718. ----------------------------
  719. exit code: 0
  720. [0.006945] Failed -> /home/gonzo/Github/ChakraCore/test/Regex/BoiHardFail.js
  721. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -regexDebug /home/gonzo/Github/ChakraCore/test/Regex/BoiHardFail.js
  722. Output: (at line 0)
  723. ----------------------------
  724. Invalid Flag : -regexDebug
  725. ----------------------------
  726. Expected Output:
  727. ----------------------------
  728. REGEX AST /^token/ {
  729. ----------------------------
  730. exit code: 0
  731. WARNING: /home/gonzo/Github/ChakraCore/test/Regex/LeadTrail.js should be leadtrail.js
  732. WARNING: /home/gonzo/Github/ChakraCore/test/Regex/LeadTrail.baseline should be leadtrail.baseline
  733. [0.030591] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/leadtrail.js
  734. [0.013477] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/Bug517864.js
  735. [0.340417] Passed -> /home/gonzo/Github/ChakraCore/test/Object/HashTable.js
  736. [0.016363] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/stackregex_box.js
  737. [0.046323] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/blue_102584_1.js
  738. [0.028205] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/blue_102584_2.js
  739. [0.021404] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/Bug737451.js
  740. [0.017545] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/Bug1153694.js
  741. [0.019012] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  742. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  743. Output:
  744. ----------------------------
  745. ReferenceError: 'SIMD' is undefined
  746. at func1(boolean, boolean) (excessive-bailouts.js:34:9)
  747. at Global code (excessive-bailouts.js:64:1)
  748. ----------------------------
  749. exit code: 0
  750. [0.186444] Passed -> /home/gonzo/Github/ChakraCore/test/Object/TypeSnapshotEnumeration.js
  751. [0.017976] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  752. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  753. Output:
  754. ----------------------------
  755. ReferenceError: 'SIMD' is undefined
  756. at func1(boolean, boolean) (excessive-bailouts.js:34:9)
  757. at Global code (excessive-bailouts.js:64:1)
  758. ----------------------------
  759. exit code: 0
  760. [0.024163] Passed -> /home/gonzo/Github/ChakraCore/test/Object/NewScObject-InlineSlotCapacityLocking.js
  761. [0.019909] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  762. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  763. Output:
  764. ----------------------------
  765. ReferenceError: 'SIMD' is undefined
  766. at func1(boolean, boolean) (excessive-bailouts.js:34:9)
  767. at Global code (excessive-bailouts.js:64:1)
  768. ----------------------------
  769. exit code: 0
  770. [0.018219] Passed -> /home/gonzo/Github/ChakraCore/test/Object/objlit_type.js
  771. [0.017722] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  772. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/excessive-bailouts.js
  773. Output:
  774. ----------------------------
  775. ReferenceError: 'SIMD' is undefined
  776. at func1(boolean, boolean) (excessive-bailouts.js:34:9)
  777. at Global code (excessive-bailouts.js:64:1)
  778. ----------------------------
  779. exit code: 0
  780. [0.032912] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  781. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  782. Output:
  783. ----------------------------
  784. ReferenceError: 'SIMD' is undefined
  785. at func1(boolean, boolean) (if-test.js:14:9)
  786. at Global code (if-test.js:41:5)
  787. ----------------------------
  788. exit code: 0
  789. [0.03377] Passed -> /home/gonzo/Github/ChakraCore/test/Object/stackobject.js
  790. [0.022056] Passed -> /home/gonzo/Github/ChakraCore/test/Object/stackobject_escape.js
  791. [0.022854] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  792. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  793. Output:
  794. ----------------------------
  795. ReferenceError: 'SIMD' is undefined
  796. at func1(boolean, boolean) (if-test.js:14:9)
  797. at Global code (if-test.js:41:5)
  798. ----------------------------
  799. exit code: 0
  800. [0.022802] Passed -> /home/gonzo/Github/ChakraCore/test/Object/LargeAuxArray.js
  801. [0.020664] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  802. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  803. Output:
  804. ----------------------------
  805. ReferenceError: 'SIMD' is undefined
  806. at func1(boolean, boolean) (if-test.js:14:9)
  807. at Global code (if-test.js:41:5)
  808. ----------------------------
  809. exit code: 0
  810. [0.019829] Passed -> /home/gonzo/Github/ChakraCore/test/Object/stackobject_dependency.js
  811. [0.022658] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  812. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/if-test.js
  813. Output:
  814. ----------------------------
  815. ReferenceError: 'SIMD' is undefined
  816. at func1(boolean, boolean) (if-test.js:14:9)
  817. at Global code (if-test.js:41:5)
  818. ----------------------------
  819. exit code: 0
  820. [0.018161] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  821. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  822. Output:
  823. ----------------------------
  824. ReferenceError: 'SIMD' is undefined
  825. at func1(boolean, boolean) (loop-test-1.js:27:9)
  826. at Global code (loop-test-1.js:53:1)
  827. ----------------------------
  828. exit code: 0
  829. [0.060063] Passed -> /home/gonzo/Github/ChakraCore/test/Object/objectCreateNull.js
  830. [0.017598] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  831. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  832. Output:
  833. ----------------------------
  834. ReferenceError: 'SIMD' is undefined
  835. at func1(boolean, boolean) (loop-test-1.js:27:9)
  836. at Global code (loop-test-1.js:53:1)
  837. ----------------------------
  838. exit code: 0
  839. [0.015223] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_otherInstrs.js
  840. [0.017828] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  841. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  842. Output:
  843. ----------------------------
  844. ReferenceError: 'SIMD' is undefined
  845. at func1(boolean, boolean) (loop-test-1.js:27:9)
  846. at Global code (loop-test-1.js:53:1)
  847. ----------------------------
  848. exit code: 0
  849. [0.017865] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining.js
  850. [0.015384] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_SimpleDictTypeHandler.js
  851. [0.03591] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  852. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-1.js
  853. Output:
  854. ----------------------------
  855. ReferenceError: 'SIMD' is undefined
  856. at func1(boolean, boolean) (loop-test-1.js:27:9)
  857. at Global code (loop-test-1.js:53:1)
  858. ----------------------------
  859. exit code: 0
  860. [0.018086] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_DictTypeHandler.js
  861. [0.030785] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  862. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  863. Output:
  864. ----------------------------
  865. ReferenceError: 'SIMD' is undefined
  866. at func1() (loop-test-2.js:17:13)
  867. at Global code (loop-test-2.js:24:1)
  868. ----------------------------
  869. exit code: 0
  870. [0.027446] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_deleteProps.js
  871. [0.01814] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_prototype.js
  872. [0.025686] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  873. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  874. Output:
  875. ----------------------------
  876. ReferenceError: 'SIMD' is undefined
  877. at func1() (loop-test-2.js:17:13)
  878. at Global code (loop-test-2.js:24:1)
  879. ----------------------------
  880. exit code: 0
  881. [0.016216] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_prototypeTypeChange.js
  882. [0.014154] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_objArrayFastPath.js
  883. [0.025868] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  884. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  885. Output:
  886. ----------------------------
  887. ReferenceError: 'SIMD' is undefined
  888. at func1() (loop-test-2.js:17:13)
  889. at Global code (loop-test-2.js:24:1)
  890. ----------------------------
  891. exit code: 0
  892. [0.017079] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_StFldOpt.js
  893. [0.018109] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  894. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-2.js
  895. Output:
  896. ----------------------------
  897. ReferenceError: 'SIMD' is undefined
  898. at func1() (loop-test-2.js:17:13)
  899. at Global code (loop-test-2.js:24:1)
  900. ----------------------------
  901. exit code: 0
  902. [0.012933] Passed -> /home/gonzo/Github/ChakraCore/test/Object/stackobject_dependency.js
  903. [0.023887] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  904. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  905. Output:
  906. ----------------------------
  907. ReferenceError: 'SIMD' is undefined
  908. at func1(boolean, boolean) (loop-test-3.js:38:9)
  909. at Global code (loop-test-3.js:64:1)
  910. [0.012254] Passed -> /home/gonzo/Github/ChakraCore/test/Object/stackobject_dependency.js
  911. ----------------------------
  912. exit code: 0
  913. [0.014997] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_NewPropNoInlineCache.js
  914. [0.01882] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  915. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  916. Output:
  917. ----------------------------
  918. ReferenceError: 'SIMD' is undefined
  919. at func1(boolean, boolean) (loop-test-3.js:38:9)
  920. at Global code (loop-test-3.js:64:1)
  921. ----------------------------
  922. exit code: 0
  923. [0.016672] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_NewPropNoInlineCache_StaticType.js
  924. [0.025234] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  925. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  926. Output:
  927. ----------------------------
  928. ReferenceError: 'SIMD' is undefined
  929. at func1(boolean, boolean) (loop-test-3.js:38:9)
  930. at Global code (loop-test-3.js:64:1)
  931. ----------------------------
  932. exit code: 0
  933. [0.026052] Passed -> /home/gonzo/Github/ChakraCore/test/Object/ObjectHeaderInlining_NewPropSharedInlineCache.js
  934. [0.018778] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  935. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/loop-test-3.js
  936. Output:
  937. ----------------------------
  938. ReferenceError: 'SIMD' is undefined
  939. at func1(boolean, boolean) (loop-test-3.js:38:9)
  940. at Global code (loop-test-3.js:64:1)
  941. ----------------------------
  942. exit code: 0
  943. [0.017305] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  944. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  945. Output:
  946. ----------------------------
  947. ReferenceError: 'SIMD' is undefined
  948. at Global code (shuffle.js:108:1)
  949. ----------------------------
  950. exit code: 0
  951. [0.032835] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/access.js
  952. [0.017739] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  953. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  954. Output:
  955. ----------------------------
  956. ReferenceError: 'SIMD' is undefined
  957. at Global code (shuffle.js:108:1)
  958. ----------------------------
  959. exit code: 0
  960. [0.016994] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  961. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  962. Output:
  963. ----------------------------
  964. ReferenceError: 'SIMD' is undefined
  965. at Global code (shuffle.js:108:1)
  966. ----------------------------
  967. exit code: 0
  968. [0.017138] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  969. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.TypeSpec/shuffle.js
  970. Output:
  971. ----------------------------
  972. ReferenceError: 'SIMD' is undefined
  973. at Global code (shuffle.js:108:1)
  974. ----------------------------
  975. exit code: 0
  976. [0.016564] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAbsNeg.js
  977. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAbsNeg.js
  978. Output: (at line 1)
  979. ----------------------------
  980. ReferenceError: 'SIMD' is undefined
  981. ----------------------------
  982. Expected Output:
  983. ----------------------------
  984. Correct
  985. ----------------------------
  986. exit code: 0
  987. [0.032297] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAbsNeg.js
  988. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAbsNeg.js
  989. Output: (at line 1)
  990. ----------------------------
  991. ReferenceError: 'SIMD' is undefined
  992. ----------------------------
  993. Expected Output:
  994. ----------------------------
  995. Correct
  996. ----------------------------
  997. exit code: 0
  998. [0.024205] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAbsNeg.js
  999. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAbsNeg.js
  1000. Output: (at line 1)
  1001. ----------------------------
  1002. ReferenceError: 'SIMD' is undefined
  1003. ----------------------------
  1004. Expected Output:
  1005. ----------------------------
  1006. Correct
  1007. ----------------------------
  1008. exit code: 0
  1009. [0.023939] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAddSub.js
  1010. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAddSub.js
  1011. Output: (at line 1)
  1012. ----------------------------
  1013. ReferenceError: 'SIMD' is undefined
  1014. ----------------------------
  1015. Expected Output:
  1016. ----------------------------
  1017. Correct
  1018. ----------------------------
  1019. exit code: 0
  1020. [0.023784] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAddSub.js
  1021. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAddSub.js
  1022. Output: (at line 1)
  1023. ----------------------------
  1024. ReferenceError: 'SIMD' is undefined
  1025. ----------------------------
  1026. Expected Output:
  1027. ----------------------------
  1028. Correct
  1029. ----------------------------
  1030. exit code: 0
  1031. [0.023518] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAddSub.js
  1032. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testAddSub.js
  1033. Output: (at line 1)
  1034. ----------------------------
  1035. ReferenceError: 'SIMD' is undefined
  1036. ----------------------------
  1037. Expected Output:
  1038. ----------------------------
  1039. Correct
  1040. ----------------------------
  1041. exit code: 0
  1042. [0.024959] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testComparisons.js
  1043. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testComparisons.js
  1044. Output: (at line 1)
  1045. ----------------------------
  1046. ReferenceError: 'SIMD' is undefined
  1047. ----------------------------
  1048. Expected Output:
  1049. ----------------------------
  1050. Correct
  1051. ----------------------------
  1052. exit code: 0
  1053. [0.045629] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testComparisons.js
  1054. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testComparisons.js
  1055. Output: (at line 1)
  1056. ----------------------------
  1057. ReferenceError: 'SIMD' is undefined
  1058. ----------------------------
  1059. Expected Output:
  1060. ----------------------------
  1061. Correct
  1062. ----------------------------
  1063. exit code: 0
  1064. [0.030769] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testComparisons.js
  1065. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testComparisons.js
  1066. Output: (at line 1)
  1067. ----------------------------
  1068. ReferenceError: 'SIMD' is undefined
  1069. ----------------------------
  1070. Expected Output:
  1071. ----------------------------
  1072. Correct
  1073. ----------------------------
  1074. exit code: 0
  1075. [0.019634] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConstructor.js
  1076. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConstructor.js
  1077. Output: (at line 1)
  1078. ----------------------------
  1079. ReferenceError: 'SIMD' is undefined
  1080. ----------------------------
  1081. Expected Output:
  1082. ----------------------------
  1083. true
  1084. ----------------------------
  1085. exit code: 0
  1086. [0.023146] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConstructor.js
  1087. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConstructor.js
  1088. Output: (at line 1)
  1089. ----------------------------
  1090. ReferenceError: 'SIMD' is undefined
  1091. ----------------------------
  1092. Expected Output:
  1093. ----------------------------
  1094. true
  1095. ----------------------------
  1096. exit code: 0
  1097. [0.016528] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConstructor.js
  1098. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConstructor.js
  1099. Output: (at line 1)
  1100. ----------------------------
  1101. ReferenceError: 'SIMD' is undefined
  1102. ----------------------------
  1103. Expected Output:
  1104. ----------------------------
  1105. true
  1106. ----------------------------
  1107. exit code: 0
  1108. [0.01679] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConversions.js
  1109. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConversions.js
  1110. Output: (at line 1)
  1111. ----------------------------
  1112. ReferenceError: 'SIMD' is undefined
  1113. ----------------------------
  1114. Expected Output:
  1115. ----------------------------
  1116. Correct
  1117. ----------------------------
  1118. exit code: 0
  1119. [0.016374] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConversions.js
  1120. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConversions.js
  1121. Output: (at line 1)
  1122. ----------------------------
  1123. ReferenceError: 'SIMD' is undefined
  1124. ----------------------------
  1125. Expected Output:
  1126. ----------------------------
  1127. Correct
  1128. ----------------------------
  1129. exit code: 0
  1130. [0.023445] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConversions.js
  1131. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testConversions.js
  1132. Output: (at line 1)
  1133. ----------------------------
  1134. ReferenceError: 'SIMD' is undefined
  1135. ----------------------------
  1136. Expected Output:
  1137. ----------------------------
  1138. Correct
  1139. ----------------------------
  1140. exit code: 0
  1141. [0.033734] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testFields.js
  1142. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testFields.js
  1143. Output:
  1144. ----------------------------
  1145. ReferenceError: 'SIMD' is undefined
  1146. at Global code (testfields.js:7:1)
  1147. ----------------------------
  1148. exit code: 0
  1149. [0.016433] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testFields.js
  1150. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testFields.js
  1151. Output:
  1152. ----------------------------
  1153. ReferenceError: 'SIMD' is undefined
  1154. at Global code (testfields.js:7:1)
  1155. ----------------------------
  1156. exit code: 0
  1157. [0.017009] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testFields.js
  1158. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testFields.js
  1159. Output:
  1160. ----------------------------
  1161. ReferenceError: 'SIMD' is undefined
  1162. at Global code (testfields.js:7:1)
  1163. ----------------------------
  1164. exit code: 0
  1165. [0.640691] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/add.js
  1166. [0.016906] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMinMax.js
  1167. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMinMax.js
  1168. Output: (at line 1)
  1169. ----------------------------
  1170. ReferenceError: 'SIMD' is undefined
  1171. ----------------------------
  1172. Expected Output:
  1173. ----------------------------
  1174. Correct
  1175. ----------------------------
  1176. exit code: 0
  1177. [0.022659] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMinMax.js
  1178. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMinMax.js
  1179. Output: (at line 1)
  1180. ----------------------------
  1181. ReferenceError: 'SIMD' is undefined
  1182. ----------------------------
  1183. Expected Output:
  1184. ----------------------------
  1185. Correct
  1186. ----------------------------
  1187. exit code: 0
  1188. [0.018571] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMinMax.js
  1189. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMinMax.js
  1190. Output: (at line 1)
  1191. ----------------------------
  1192. ReferenceError: 'SIMD' is undefined
  1193. ----------------------------
  1194. Expected Output:
  1195. ----------------------------
  1196. Correct
  1197. ----------------------------
  1198. exit code: 0
  1199. [0.018817] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMulDiv.js
  1200. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMulDiv.js
  1201. Output: (at line 1)
  1202. ----------------------------
  1203. ReferenceError: 'SIMD' is undefined
  1204. ----------------------------
  1205. Expected Output:
  1206. ----------------------------
  1207. Correct
  1208. ----------------------------
  1209. exit code: 0
  1210. [0.02852] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMulDiv.js
  1211. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMulDiv.js
  1212. Output: (at line 1)
  1213. ----------------------------
  1214. ReferenceError: 'SIMD' is undefined
  1215. ----------------------------
  1216. Expected Output:
  1217. ----------------------------
  1218. Correct
  1219. ----------------------------
  1220. exit code: 0
  1221. [0.028619] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMulDiv.js
  1222. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testMulDiv.js
  1223. Output: (at line 1)
  1224. ----------------------------
  1225. ReferenceError: 'SIMD' is undefined
  1226. ----------------------------
  1227. Expected Output:
  1228. ----------------------------
  1229. Correct
  1230. ----------------------------
  1231. exit code: 0
  1232. [0.018175] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testReciprocal.js
  1233. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testReciprocal.js
  1234. Output:
  1235. ----------------------------
  1236. ReferenceError: 'SIMD' is undefined
  1237. at testreciprocalApproximation() (testreciprocal.js:8:5)
  1238. at Global code (testreciprocal.js:27:1)
  1239. ----------------------------
  1240. exit code: 0
  1241. [0.024259] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testReciprocal.js
  1242. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testReciprocal.js
  1243. Output:
  1244. ----------------------------
  1245. ReferenceError: 'SIMD' is undefined
  1246. at testreciprocalApproximation() (testreciprocal.js:8:5)
  1247. at Global code (testreciprocal.js:27:1)
  1248. ----------------------------
  1249. exit code: 0
  1250. [0.021019] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testReciprocal.js
  1251. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testReciprocal.js
  1252. Output:
  1253. ----------------------------
  1254. ReferenceError: 'SIMD' is undefined
  1255. at testreciprocalApproximation() (testreciprocal.js:8:5)
  1256. at Global code (testreciprocal.js:27:1)
  1257. ----------------------------
  1258. exit code: 0
  1259. [0.019428] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSelect.js
  1260. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSelect.js
  1261. Output: (at line 1)
  1262. ----------------------------
  1263. ReferenceError: 'SIMD' is undefined
  1264. ----------------------------
  1265. Expected Output:
  1266. ----------------------------
  1267. Correct
  1268. ----------------------------
  1269. exit code: 0
  1270. [0.015317] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSelect.js
  1271. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSelect.js
  1272. Output: (at line 1)
  1273. ----------------------------
  1274. ReferenceError: 'SIMD' is undefined
  1275. ----------------------------
  1276. Expected Output:
  1277. ----------------------------
  1278. Correct
  1279. ----------------------------
  1280. exit code: 0
  1281. [0.015992] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSelect.js
  1282. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSelect.js
  1283. Output: (at line 1)
  1284. ----------------------------
  1285. ReferenceError: 'SIMD' is undefined
  1286. ----------------------------
  1287. Expected Output:
  1288. ----------------------------
  1289. Correct
  1290. ----------------------------
  1291. exit code: 0
  1292. [0.034671] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testShuffle.js
  1293. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testShuffle.js
  1294. Output: (at line 1)
  1295. ----------------------------
  1296. ReferenceError: 'SIMD' is undefined
  1297. ----------------------------
  1298. Expected Output:
  1299. ----------------------------
  1300. Correct
  1301. ----------------------------
  1302. exit code: 0
  1303. [0.029277] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testShuffle.js
  1304. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testShuffle.js
  1305. Output: (at line 1)
  1306. ----------------------------
  1307. ReferenceError: 'SIMD' is undefined
  1308. ----------------------------
  1309. Expected Output:
  1310. ----------------------------
  1311. Correct
  1312. ----------------------------
  1313. exit code: 0
  1314. [0.025364] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testShuffle.js
  1315. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testShuffle.js
  1316. Output: (at line 1)
  1317. ----------------------------
  1318. ReferenceError: 'SIMD' is undefined
  1319. ----------------------------
  1320. Expected Output:
  1321. ----------------------------
  1322. Correct
  1323. ----------------------------
  1324. exit code: 0
  1325. [0.016307] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSqrt.js
  1326. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSqrt.js
  1327. Output: (at line 1)
  1328. ----------------------------
  1329. ReferenceError: 'SIMD' is undefined
  1330. ----------------------------
  1331. Expected Output:
  1332. ----------------------------
  1333. Correct
  1334. ----------------------------
  1335. exit code: 0
  1336. [0.015993] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSqrt.js
  1337. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSqrt.js
  1338. Output: (at line 1)
  1339. ----------------------------
  1340. ReferenceError: 'SIMD' is undefined
  1341. ----------------------------
  1342. Expected Output:
  1343. ----------------------------
  1344. Correct
  1345. ----------------------------
  1346. exit code: 0
  1347. [0.015988] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSqrt.js
  1348. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testSqrt.js
  1349. Output: (at line 1)
  1350. ----------------------------
  1351. ReferenceError: 'SIMD' is undefined
  1352. ----------------------------
  1353. Expected Output:
  1354. ----------------------------
  1355. Correct
  1356. ----------------------------
  1357. exit code: 0
  1358. [0.01787] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testWithLane.js
  1359. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testWithLane.js
  1360. Output: (at line 1)
  1361. ----------------------------
  1362. ReferenceError: 'SIMD' is undefined
  1363. ----------------------------
  1364. Expected Output:
  1365. ----------------------------
  1366. Correct
  1367. ----------------------------
  1368. exit code: 0
  1369. [0.03179] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testWithLane.js
  1370. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testWithLane.js
  1371. Output: (at line 1)
  1372. ----------------------------
  1373. ReferenceError: 'SIMD' is undefined
  1374. ----------------------------
  1375. Expected Output:
  1376. ----------------------------
  1377. Correct
  1378. ----------------------------
  1379. exit code: 0
  1380. [0.028387] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testWithLane.js
  1381. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.float32x4/testWithLane.js
  1382. Output: (at line 1)
  1383. ----------------------------
  1384. ReferenceError: 'SIMD' is undefined
  1385. ----------------------------
  1386. Expected Output:
  1387. ----------------------------
  1388. Correct
  1389. ----------------------------
  1390. exit code: 0
  1391. [0.018439] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAddSub.js
  1392. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAddSub.js
  1393. Output:
  1394. ----------------------------
  1395. ReferenceError: 'SIMD' is undefined
  1396. at testAdd() (testaddsub.js:9:5)
  1397. at Global code (testaddsub.js:44:1)
  1398. ----------------------------
  1399. exit code: 0
  1400. [0.018084] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAddSub.js
  1401. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAddSub.js
  1402. Output:
  1403. ----------------------------
  1404. ReferenceError: 'SIMD' is undefined
  1405. at testAdd() (testaddsub.js:9:5)
  1406. at Global code (testaddsub.js:44:1)
  1407. ----------------------------
  1408. exit code: 0
  1409. [0.018002] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAddSub.js
  1410. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAddSub.js
  1411. Output:
  1412. ----------------------------
  1413. ReferenceError: 'SIMD' is undefined
  1414. at testAdd() (testaddsub.js:9:5)
  1415. at Global code (testaddsub.js:44:1)
  1416. ----------------------------
  1417. exit code: 0
  1418. [0.016296] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSplat.js
  1419. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSplat.js
  1420. Output:
  1421. ----------------------------
  1422. ReferenceError: 'SIMD' is undefined
  1423. at testSplat() (testsplat.js:14:5)
  1424. at Global code (testsplat.js:23:1)
  1425. ----------------------------
  1426. exit code: 0
  1427. [0.0156] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSplat.js
  1428. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSplat.js
  1429. Output:
  1430. ----------------------------
  1431. ReferenceError: 'SIMD' is undefined
  1432. at testSplat() (testsplat.js:14:5)
  1433. at Global code (testsplat.js:23:1)
  1434. ----------------------------
  1435. exit code: 0
  1436. [0.015384] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSplat.js
  1437. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSplat.js
  1438. Output:
  1439. ----------------------------
  1440. ReferenceError: 'SIMD' is undefined
  1441. at testSplat() (testsplat.js:14:5)
  1442. at Global code (testsplat.js:23:1)
  1443. ----------------------------
  1444. exit code: 0
  1445. [0.037293] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAndOrXor.js
  1446. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAndOrXor.js
  1447. Output:
  1448. ----------------------------
  1449. ReferenceError: 'SIMD' is undefined
  1450. at testAnd() (testandorxor.js:11:5)
  1451. at Global code (testandorxor.js:60:1)
  1452. ----------------------------
  1453. exit code: 0
  1454. [0.036946] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAndOrXor.js
  1455. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAndOrXor.js
  1456. Output:
  1457. ----------------------------
  1458. ReferenceError: 'SIMD' is undefined
  1459. at testAnd() (testandorxor.js:11:5)
  1460. at Global code (testandorxor.js:60:1)
  1461. ----------------------------
  1462. exit code: 0
  1463. [0.022141] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAndOrXor.js
  1464. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testAndOrXor.js
  1465. Output:
  1466. ----------------------------
  1467. ReferenceError: 'SIMD' is undefined
  1468. at testAnd() (testandorxor.js:11:5)
  1469. at Global code (testandorxor.js:60:1)
  1470. ----------------------------
  1471. exit code: 0
  1472. [0.018548] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testComparisons.js
  1473. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testComparisons.js
  1474. Output:
  1475. ----------------------------
  1476. ReferenceError: 'SIMD' is undefined
  1477. at testComparisons() (testcomparisons.js:9:5)
  1478. at Global code (testcomparisons.js:49:1)
  1479. ----------------------------
  1480. exit code: 0
  1481. [0.018083] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testComparisons.js
  1482. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testComparisons.js
  1483. Output:
  1484. ----------------------------
  1485. ReferenceError: 'SIMD' is undefined
  1486. at testComparisons() (testcomparisons.js:9:5)
  1487. at Global code (testcomparisons.js:49:1)
  1488. ----------------------------
  1489. exit code: 0
  1490. [0.018045] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testComparisons.js
  1491. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testComparisons.js
  1492. Output:
  1493. ----------------------------
  1494. ReferenceError: 'SIMD' is undefined
  1495. at testComparisons() (testcomparisons.js:9:5)
  1496. at Global code (testcomparisons.js:49:1)
  1497. ----------------------------
  1498. exit code: 0
  1499. [0.01959] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConstructor.js
  1500. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConstructor.js
  1501. Output: (at line 1)
  1502. ----------------------------
  1503. ReferenceError: 'SIMD' is undefined
  1504. ----------------------------
  1505. Expected Output:
  1506. ----------------------------
  1507. >> Fail!
  1508. ----------------------------
  1509. exit code: 0
  1510. [0.042544] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConstructor.js
  1511. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConstructor.js
  1512. Output: (at line 1)
  1513. ----------------------------
  1514. ReferenceError: 'SIMD' is undefined
  1515. ----------------------------
  1516. Expected Output:
  1517. ----------------------------
  1518. >> Fail!
  1519. ----------------------------
  1520. exit code: 0
  1521. [1.077467] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/addcross.js
  1522. [0.030477] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConstructor.js
  1523. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConstructor.js
  1524. Output: (at line 1)
  1525. ----------------------------
  1526. ReferenceError: 'SIMD' is undefined
  1527. ----------------------------
  1528. Expected Output:
  1529. ----------------------------
  1530. >> Fail!
  1531. ----------------------------
  1532. exit code: 0
  1533. [0.016577] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/binop-kills.js
  1534. [0.019093] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConversions.js
  1535. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConversions.js
  1536. Output:
  1537. ----------------------------
  1538. ReferenceError: 'SIMD' is undefined
  1539. at testInt32x4BitConversion() (testconversions.js:9:5)
  1540. at Global code (testconversions.js:78:1)
  1541. ----------------------------
  1542. exit code: 0
  1543. [0.030912] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/delete1.js
  1544. [0.026361] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConversions.js
  1545. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConversions.js
  1546. Output:
  1547. ----------------------------
  1548. ReferenceError: 'SIMD' is undefined
  1549. at testInt32x4BitConversion() (testconversions.js:9:5)
  1550. at Global code (testconversions.js:78:1)
  1551. ----------------------------
  1552. exit code: 0
  1553. [0.025564] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/delete2.js
  1554. [0.020819] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConversions.js
  1555. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testConversions.js
  1556. Output:
  1557. ----------------------------
  1558. ReferenceError: 'SIMD' is undefined
  1559. at testInt32x4BitConversion() (testconversions.js:9:5)
  1560. at Global code (testconversions.js:78:1)
  1561. ----------------------------
  1562. exit code: 0
  1563. [0.014881] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testFields.js
  1564. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testFields.js
  1565. Output: (at line 0)
  1566. ----------------------------
  1567. ReferenceError: 'SIMD' is undefined
  1568. ----------------------------
  1569. Expected Output:
  1570. ----------------------------
  1571. Int32x4 scalar getters
  1572. ----------------------------
  1573. exit code: 0
  1574. [0.014465] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testFields.js
  1575. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testFields.js
  1576. Output: (at line 0)
  1577. ----------------------------
  1578. ReferenceError: 'SIMD' is undefined
  1579. ----------------------------
  1580. Expected Output:
  1581. ----------------------------
  1582. Int32x4 scalar getters
  1583. ----------------------------
  1584. exit code: 0
  1585. [0.087125] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/delete3.js
  1586. [0.031838] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testFields.js
  1587. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testFields.js
  1588. Output: (at line 0)
  1589. ----------------------------
  1590. ReferenceError: 'SIMD' is undefined
  1591. ----------------------------
  1592. Expected Output:
  1593. ----------------------------
  1594. Int32x4 scalar getters
  1595. ----------------------------
  1596. exit code: 0
  1597. [0.035431] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testMul.js
  1598. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testMul.js
  1599. Output: (at line 1)
  1600. ----------------------------
  1601. ReferenceError: 'SIMD' is undefined
  1602. ----------------------------
  1603. Expected Output:
  1604. ----------------------------
  1605. Correct
  1606. ----------------------------
  1607. exit code: 0
  1608. [0.023698] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testMul.js
  1609. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testMul.js
  1610. Output: (at line 1)
  1611. ----------------------------
  1612. ReferenceError: 'SIMD' is undefined
  1613. ----------------------------
  1614. Expected Output:
  1615. ----------------------------
  1616. Correct
  1617. ----------------------------
  1618. exit code: 0
  1619. [0.023371] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testMul.js
  1620. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testMul.js
  1621. Output: (at line 1)
  1622. ----------------------------
  1623. ReferenceError: 'SIMD' is undefined
  1624. ----------------------------
  1625. Expected Output:
  1626. ----------------------------
  1627. Correct
  1628. ----------------------------
  1629. exit code: 0
  1630. [0.031909] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNeg.js
  1631. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNeg.js
  1632. Output: (at line 1)
  1633. ----------------------------
  1634. ReferenceError: 'SIMD' is undefined
  1635. ----------------------------
  1636. Expected Output:
  1637. ----------------------------
  1638. Correct
  1639. ----------------------------
  1640. exit code: 0
  1641. [0.020167] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNeg.js
  1642. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNeg.js
  1643. Output: (at line 1)
  1644. ----------------------------
  1645. ReferenceError: 'SIMD' is undefined
  1646. ----------------------------
  1647. Expected Output:
  1648. ----------------------------
  1649. Correct
  1650. ----------------------------
  1651. exit code: 0
  1652. [0.016145] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNeg.js
  1653. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNeg.js
  1654. Output: (at line 1)
  1655. ----------------------------
  1656. ReferenceError: 'SIMD' is undefined
  1657. ----------------------------
  1658. Expected Output:
  1659. ----------------------------
  1660. Correct
  1661. ----------------------------
  1662. exit code: 0
  1663. [0.034651] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNot.js
  1664. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNot.js
  1665. Output: (at line 1)
  1666. ----------------------------
  1667. ReferenceError: 'SIMD' is undefined
  1668. ----------------------------
  1669. Expected Output:
  1670. ----------------------------
  1671. Correct
  1672. ----------------------------
  1673. exit code: 0
  1674. [0.036188] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNot.js
  1675. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNot.js
  1676. Output: (at line 1)
  1677. ----------------------------
  1678. ReferenceError: 'SIMD' is undefined
  1679. ----------------------------
  1680. Expected Output:
  1681. ----------------------------
  1682. Correct
  1683. ----------------------------
  1684. exit code: 0
  1685. [0.015563] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNot.js
  1686. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testNot.js
  1687. Output: (at line 1)
  1688. ----------------------------
  1689. ReferenceError: 'SIMD' is undefined
  1690. ----------------------------
  1691. Expected Output:
  1692. ----------------------------
  1693. Correct
  1694. ----------------------------
  1695. exit code: 0
  1696. [0.016435] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSelect.js
  1697. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSelect.js
  1698. Output: (at line 1)
  1699. ----------------------------
  1700. ReferenceError: 'SIMD' is undefined
  1701. ----------------------------
  1702. Expected Output:
  1703. ----------------------------
  1704. Correct
  1705. ----------------------------
  1706. exit code: 0
  1707. [0.023897] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSelect.js
  1708. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSelect.js
  1709. Output: (at line 1)
  1710. ----------------------------
  1711. ReferenceError: 'SIMD' is undefined
  1712. ----------------------------
  1713. Expected Output:
  1714. ----------------------------
  1715. Correct
  1716. ----------------------------
  1717. exit code: 0
  1718. [0.401689] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/div.js
  1719. [0.020994] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSelect.js
  1720. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testSelect.js
  1721. Output: (at line 1)
  1722. ----------------------------
  1723. ReferenceError: 'SIMD' is undefined
  1724. ----------------------------
  1725. Expected Output:
  1726. ----------------------------
  1727. Correct
  1728. ----------------------------
  1729. exit code: 0
  1730. [0.021972] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShift.js
  1731. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShift.js
  1732. Output:
  1733. ----------------------------
  1734. ReferenceError: 'SIMD' is undefined
  1735. at testShiftleftByScalar() (testshift.js:9:5)
  1736. at Global code (testshift.js:87:1)
  1737. ----------------------------
  1738. exit code: 0
  1739. [0.017373] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShift.js
  1740. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShift.js
  1741. Output:
  1742. ----------------------------
  1743. ReferenceError: 'SIMD' is undefined
  1744. at testShiftleftByScalar() (testshift.js:9:5)
  1745. at Global code (testshift.js:87:1)
  1746. ----------------------------
  1747. exit code: 0
  1748. [0.038477] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShift.js
  1749. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShift.js
  1750. Output:
  1751. ----------------------------
  1752. ReferenceError: 'SIMD' is undefined
  1753. at testShiftleftByScalar() (testshift.js:9:5)
  1754. at Global code (testshift.js:87:1)
  1755. ----------------------------
  1756. exit code: 0
  1757. [0.028168] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShuffle.js
  1758. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testShuffle.js
  1759. Output: (at line 1)
  1760. ----------------------------
  1761. ReferenceError: 'SIMD' is undefined
  1762. ----------------------------
  1763. Expected Output:
  1764. ----------------------------
  1765. Correct
  1766. ----------------------------
  1767. exit code: 0
  1768. [0.016999] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testWithLane.js
  1769. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testWithLane.js
  1770. Output: (at line 1)
  1771. ----------------------------
  1772. ReferenceError: 'SIMD' is undefined
  1773. ----------------------------
  1774. Expected Output:
  1775. ----------------------------
  1776. Correct
  1777. ----------------------------
  1778. exit code: 0
  1779. [0.016554] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testWithLane.js
  1780. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testWithLane.js
  1781. Output: (at line 1)
  1782. ----------------------------
  1783. ReferenceError: 'SIMD' is undefined
  1784. ----------------------------
  1785. Expected Output:
  1786. ----------------------------
  1787. Correct
  1788. ----------------------------
  1789. exit code: 0
  1790. [0.016422] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testWithLane.js
  1791. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 -lic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testWithLane.js
  1792. Output: (at line 1)
  1793. ----------------------------
  1794. ReferenceError: 'SIMD' is undefined
  1795. ----------------------------
  1796. Expected Output:
  1797. ----------------------------
  1798. Correct
  1799. ----------------------------
  1800. exit code: 0
  1801. [0.024687] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testStore.js
  1802. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int32x4/testStore.js
  1803. Output: (at line 1)
  1804. ----------------------------
  1805. ReferenceError: 'SIMD' is undefined
  1806. ----------------------------
  1807. Expected Output:
  1808. ----------------------------
  1809. Correct
  1810. ----------------------------
  1811. exit code: 0
  1812. [0.026185] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAddSub.js
  1813. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAddSub.js
  1814. Output: (at line 1)
  1815. ----------------------------
  1816. ReferenceError: 'SIMD' is undefined
  1817. ----------------------------
  1818. Expected Output:
  1819. ----------------------------
  1820. Correct
  1821. ----------------------------
  1822. exit code: 0
  1823. [0.034434] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAddSub.js
  1824. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAddSub.js
  1825. Output: (at line 1)
  1826. ----------------------------
  1827. ReferenceError: 'SIMD' is undefined
  1828. ----------------------------
  1829. Expected Output:
  1830. ----------------------------
  1831. Correct
  1832. ----------------------------
  1833. exit code: 0
  1834. [0.021105] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAddSub.js
  1835. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAddSub.js
  1836. Output: (at line 1)
  1837. ----------------------------
  1838. ReferenceError: 'SIMD' is undefined
  1839. ----------------------------
  1840. Expected Output:
  1841. ----------------------------
  1842. Correct
  1843. ----------------------------
  1844. exit code: 0
  1845. [0.018675] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAndOrXor.js
  1846. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAndOrXor.js
  1847. Output: (at line 1)
  1848. ----------------------------
  1849. ReferenceError: 'SIMD' is undefined
  1850. ----------------------------
  1851. Expected Output:
  1852. ----------------------------
  1853. Correct
  1854. ----------------------------
  1855. exit code: 0
  1856. [0.017183] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAndOrXor.js
  1857. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAndOrXor.js
  1858. Output: (at line 1)
  1859. ----------------------------
  1860. ReferenceError: 'SIMD' is undefined
  1861. ----------------------------
  1862. Expected Output:
  1863. ----------------------------
  1864. Correct
  1865. ----------------------------
  1866. exit code: 0
  1867. [0.017047] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAndOrXor.js
  1868. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testAndOrXor.js
  1869. Output: (at line 1)
  1870. ----------------------------
  1871. ReferenceError: 'SIMD' is undefined
  1872. ----------------------------
  1873. Expected Output:
  1874. ----------------------------
  1875. Correct
  1876. ----------------------------
  1877. exit code: 0
  1878. [0.016575] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testComparisons.js
  1879. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testComparisons.js
  1880. Output: (at line 1)
  1881. ----------------------------
  1882. ReferenceError: 'SIMD' is undefined
  1883. ----------------------------
  1884. Expected Output:
  1885. ----------------------------
  1886. Correct
  1887. ----------------------------
  1888. exit code: 0
  1889. [0.016093] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testComparisons.js
  1890. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testComparisons.js
  1891. Output: (at line 1)
  1892. ----------------------------
  1893. ReferenceError: 'SIMD' is undefined
  1894. ----------------------------
  1895. Expected Output:
  1896. ----------------------------
  1897. Correct
  1898. ----------------------------
  1899. exit code: 0
  1900. [0.016615] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testComparisons.js
  1901. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testComparisons.js
  1902. Output: (at line 1)
  1903. ----------------------------
  1904. ReferenceError: 'SIMD' is undefined
  1905. ----------------------------
  1906. Expected Output:
  1907. ----------------------------
  1908. Correct
  1909. ----------------------------
  1910. exit code: 0
  1911. [0.031988] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConstructor.js
  1912. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConstructor.js
  1913. Output: (at line 1)
  1914. ----------------------------
  1915. ReferenceError: 'SIMD' is undefined
  1916. ----------------------------
  1917. Expected Output:
  1918. ----------------------------
  1919. >> Fail!
  1920. ----------------------------
  1921. exit code: 0
  1922. [0.026091] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConstructor.js
  1923. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConstructor.js
  1924. Output: (at line 1)
  1925. ----------------------------
  1926. ReferenceError: 'SIMD' is undefined
  1927. ----------------------------
  1928. Expected Output:
  1929. ----------------------------
  1930. >> Fail!
  1931. ----------------------------
  1932. exit code: 0
  1933. [0.016106] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConstructor.js
  1934. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConstructor.js
  1935. Output: (at line 1)
  1936. ----------------------------
  1937. ReferenceError: 'SIMD' is undefined
  1938. ----------------------------
  1939. Expected Output:
  1940. ----------------------------
  1941. >> Fail!
  1942. ----------------------------
  1943. exit code: 0
  1944. [0.018877] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConversions.js
  1945. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConversions.js
  1946. Output: (at line 1)
  1947. ----------------------------
  1948. ReferenceError: 'SIMD' is undefined
  1949. ----------------------------
  1950. Expected Output:
  1951. ----------------------------
  1952. Correct
  1953. ----------------------------
  1954. exit code: 0
  1955. [0.018003] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConversions.js
  1956. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConversions.js
  1957. Output: (at line 1)
  1958. ----------------------------
  1959. ReferenceError: 'SIMD' is undefined
  1960. ----------------------------
  1961. Expected Output:
  1962. ----------------------------
  1963. Correct
  1964. ----------------------------
  1965. exit code: 0
  1966. [0.017719] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConversions.js
  1967. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testConversions.js
  1968. Output: (at line 1)
  1969. ----------------------------
  1970. ReferenceError: 'SIMD' is undefined
  1971. ----------------------------
  1972. Expected Output:
  1973. ----------------------------
  1974. Correct
  1975. ----------------------------
  1976. exit code: 0
  1977. [0.0169] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testFields.js
  1978. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testFields.js
  1979. Output: (at line 1)
  1980. ----------------------------
  1981. ReferenceError: 'SIMD' is undefined
  1982. ----------------------------
  1983. Expected Output:
  1984. ----------------------------
  1985. Correct
  1986. ----------------------------
  1987. exit code: 0
  1988. [0.04532] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testFields.js
  1989. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testFields.js
  1990. Output: (at line 1)
  1991. ----------------------------
  1992. ReferenceError: 'SIMD' is undefined
  1993. ----------------------------
  1994. Expected Output:
  1995. ----------------------------
  1996. Correct
  1997. ----------------------------
  1998. exit code: 0
  1999. [0.021983] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testFields.js
  2000. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testFields.js
  2001. Output: (at line 1)
  2002. ----------------------------
  2003. ReferenceError: 'SIMD' is undefined
  2004. ----------------------------
  2005. Expected Output:
  2006. ----------------------------
  2007. Correct
  2008. ----------------------------
  2009. exit code: 0
  2010. [0.01979] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testMul.js
  2011. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testMul.js
  2012. Output: (at line 1)
  2013. ----------------------------
  2014. ReferenceError: 'SIMD' is undefined
  2015. ----------------------------
  2016. Expected Output:
  2017. ----------------------------
  2018. Correct
  2019. ----------------------------
  2020. exit code: 0
  2021. [0.035014] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testMul.js
  2022. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testMul.js
  2023. Output: (at line 1)
  2024. ----------------------------
  2025. ReferenceError: 'SIMD' is undefined
  2026. ----------------------------
  2027. Expected Output:
  2028. ----------------------------
  2029. Correct
  2030. ----------------------------
  2031. exit code: 0
  2032. [0.029052] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testMul.js
  2033. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testMul.js
  2034. Output: (at line 1)
  2035. ----------------------------
  2036. ReferenceError: 'SIMD' is undefined
  2037. ----------------------------
  2038. Expected Output:
  2039. ----------------------------
  2040. Correct
  2041. ----------------------------
  2042. exit code: 0
  2043. [0.026856] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNeg.js
  2044. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNeg.js
  2045. Output: (at line 1)
  2046. ----------------------------
  2047. ReferenceError: 'SIMD' is undefined
  2048. ----------------------------
  2049. Expected Output:
  2050. ----------------------------
  2051. Correct
  2052. ----------------------------
  2053. exit code: 0
  2054. [0.026181] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNeg.js
  2055. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNeg.js
  2056. Output: (at line 1)
  2057. ----------------------------
  2058. ReferenceError: 'SIMD' is undefined
  2059. ----------------------------
  2060. Expected Output:
  2061. ----------------------------
  2062. Correct
  2063. ----------------------------
  2064. exit code: 0
  2065. [0.019402] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNeg.js
  2066. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNeg.js
  2067. Output: (at line 1)
  2068. ----------------------------
  2069. ReferenceError: 'SIMD' is undefined
  2070. ----------------------------
  2071. Expected Output:
  2072. ----------------------------
  2073. Correct
  2074. ----------------------------
  2075. exit code: 0
  2076. [0.030821] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNot.js
  2077. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNot.js
  2078. Output: (at line 1)
  2079. ----------------------------
  2080. ReferenceError: 'SIMD' is undefined
  2081. ----------------------------
  2082. Expected Output:
  2083. ----------------------------
  2084. Correct
  2085. ----------------------------
  2086. exit code: 0
  2087. [0.016242] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNot.js
  2088. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNot.js
  2089. Output: (at line 1)
  2090. ----------------------------
  2091. ReferenceError: 'SIMD' is undefined
  2092. ----------------------------
  2093. Expected Output:
  2094. ----------------------------
  2095. Correct
  2096. ----------------------------
  2097. exit code: 0
  2098. [0.021321] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNot.js
  2099. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testNot.js
  2100. Output: (at line 1)
  2101. ----------------------------
  2102. ReferenceError: 'SIMD' is undefined
  2103. ----------------------------
  2104. Expected Output:
  2105. ----------------------------
  2106. Correct
  2107. ----------------------------
  2108. exit code: 0
  2109. [0.018615] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testShift.js
  2110. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testShift.js
  2111. Output: (at line 1)
  2112. ----------------------------
  2113. ReferenceError: 'SIMD' is undefined
  2114. ----------------------------
  2115. Expected Output:
  2116. ----------------------------
  2117. Correct
  2118. ----------------------------
  2119. exit code: 0
  2120. [0.017788] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testShift.js
  2121. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testShift.js
  2122. Output: (at line 1)
  2123. ----------------------------
  2124. ReferenceError: 'SIMD' is undefined
  2125. ----------------------------
  2126. Expected Output:
  2127. ----------------------------
  2128. Correct
  2129. ----------------------------
  2130. exit code: 0
  2131. [0.017647] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testShift.js
  2132. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testShift.js
  2133. Output: (at line 1)
  2134. ----------------------------
  2135. ReferenceError: 'SIMD' is undefined
  2136. ----------------------------
  2137. Expected Output:
  2138. ----------------------------
  2139. Correct
  2140. ----------------------------
  2141. exit code: 0
  2142. [0.02004] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testWithLane.js
  2143. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testWithLane.js
  2144. Output: (at line 1)
  2145. ----------------------------
  2146. ReferenceError: 'SIMD' is undefined
  2147. ----------------------------
  2148. Expected Output:
  2149. ----------------------------
  2150. Correct
  2151. ----------------------------
  2152. exit code: 0
  2153. [0.018976] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testWithLane.js
  2154. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testWithLane.js
  2155. Output: (at line 1)
  2156. ----------------------------
  2157. ReferenceError: 'SIMD' is undefined
  2158. ----------------------------
  2159. Expected Output:
  2160. ----------------------------
  2161. Correct
  2162. ----------------------------
  2163. exit code: 0
  2164. [0.039747] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testWithLane.js
  2165. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testWithLane.js
  2166. Output: (at line 1)
  2167. ----------------------------
  2168. ReferenceError: 'SIMD' is undefined
  2169. ----------------------------
  2170. Expected Output:
  2171. ----------------------------
  2172. Correct
  2173. ----------------------------
  2174. exit code: 0
  2175. [0.030642] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testSplat.js
  2176. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Simdjs /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testSplat.js
  2177. Output: (at line 0)
  2178. ----------------------------
  2179. ReferenceError: 'SIMD' is undefined
  2180. ----------------------------
  2181. Expected Output:
  2182. ----------------------------
  2183. splat
  2184. ----------------------------
  2185. exit code: 0
  2186. [0.015803] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testSplat.js
  2187. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -on:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testSplat.js
  2188. Output: (at line 0)
  2189. ----------------------------
  2190. ReferenceError: 'SIMD' is undefined
  2191. ----------------------------
  2192. Expected Output:
  2193. ----------------------------
  2194. splat
  2195. ----------------------------
  2196. exit code: 0
  2197. [0.015775] Failed -> /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testSplat.js
  2198. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -bgjit- -simdjs -simd128typespec -off:simplejit -mic:1 /home/gonzo/Github/ChakraCore/test/SIMD.int8x16/testSplat.js
  2199. Output: (at line 0)
  2200. ----------------------------
  2201. ReferenceError: 'SIMD' is undefined
  2202. ----------------------------
  2203. Expected Output:
  2204. ----------------------------
  2205. splat
  2206. ----------------------------
  2207. exit code: 0
  2208. WARNING: /home/gonzo/Github/ChakraCore/test/StackTrace/simpleThrow.js should be SimpleThrow.js
  2209. [0.020517] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/SimpleThrow.js
  2210. [0.031621] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/PropertyValidation.js
  2211. [0.039379] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/PropertyValidation.js
  2212. WARNING: /home/gonzo/Github/ChakraCore/test/StackTrace/simpleThrow.js should be SimpleThrow.js
  2213. WARNING: /home/gonzo/Github/ChakraCore/test/StackTrace/simpleThrow.js.baseline should be SimpleThrow.js.baseline
  2214. [0.024237] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/SimpleThrow.js
  2215. [0.026453] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/LongCallStackThrow.js
  2216. [0.047875] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/LongCallStackThrow.js
  2217. [0.027911] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/LongCallStackThrow.js
  2218. [0.027436] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/LongCallStackThrow.js
  2219. [0.41516] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/StackTraceLimit.js
  2220. [0.978989] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/StackTraceLimitOOS.js
  2221. [0.994496] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/StackTraceLimitOOS.js
  2222. [0.032048] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/dynamic.js
  2223. [0.063605] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/ErrorPrototype.js
  2224. [0.050999] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/ErrorDotStackAlreadyExists.js
  2225. [0.044941] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/FunctionName.js
  2226. [0.029732] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/x64StackWalk.js
  2227. [0.071026] Passed -> /home/gonzo/Github/ChakraCore/test/StackTrace/x64StackWalkLoopBody.js
  2228. [0.029865] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/charAt.js
  2229. [0.023132] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/fromCharCode.js
  2230. [0.047927] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/charCodeAt.js
  2231. [0.016753] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat1.js
  2232. [0.014528] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat2.js
  2233. [0.015672] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat3.js
  2234. [0.013315] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat4.js
  2235. [0.028893] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat5.js
  2236. [0.02305] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat6.js
  2237. [0.024757] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat7.js
  2238. [0.052587] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concat_empty.js
  2239. [0.022187] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/LeftDead.js
  2240. [0.037936] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/split1.js
  2241. [4.964973] Failed -> /home/gonzo/Github/ChakraCore/test/Operators/equals.js
  2242. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Operators/equals.js
  2243. Output: (at line 166)
  2244. ----------------------------
  2245. a[0](undefined) == a[83](Wed Oct 23 1974 18:45:01 GMT+0100 (CEST)) : false
  2246. ----------------------------
  2247. Expected Output:
  2248. ----------------------------
  2249. a[0](undefined) == a[83](Wed Oct 23 1974 11:45:01 GMT-0700 (Pacific Daylight Time)) : false
  2250. ----------------------------
  2251. exit code: 0
  2252. [0.03623] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/stringBuiltin.js
  2253. [0.026129] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/toLowerCase.js
  2254. [0.014609] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/string_replace.js
  2255. [0.013899] Failed -> /home/gonzo/Github/ChakraCore/test/Strings/compare.js
  2256. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Intl- /home/gonzo/Github/ChakraCore/test/Strings/compare.js
  2257. Output: (at line 2)
  2258. ----------------------------
  2259. compare ( 'abcd1234' , '1234567a' ) = 48
  2260. ----------------------------
  2261. Expected Output:
  2262. ----------------------------
  2263. compare ( 'abcd1234' , '1234567a' ) = 1
  2264. ----------------------------
  2265. exit code: 0
  2266. [0.185297] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/replace.js
  2267. [0.070362] Failed -> /home/gonzo/Github/ChakraCore/test/Strings/trim.js
  2268. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Strings/trim.js
  2269. Output: (at line 25)
  2270. ----------------------------
  2271. abÂ…
  2272. ----------------------------
  2273. Expected Output:
  2274. ----------------------------
  2275. ab…c
  2276. ----------------------------
  2277. exit code: 0
  2278. WARNING: /home/gonzo/Github/ChakraCore/test/Strings/lastIndexOf.js should be lastindexof.js
  2279. WARNING: /home/gonzo/Github/ChakraCore/test/Strings/lastIndexOf.baseline should be lastindexof.baseline
  2280. [0.030994] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/lastindexof.js
  2281. WARNING: /home/gonzo/Github/ChakraCore/test/Strings/indexOf.js should be indexof.js
  2282. WARNING: /home/gonzo/Github/ChakraCore/test/Strings/indexOf.baseline should be indexof.baseline
  2283. [0.028555] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/indexof.js
  2284. [0.051154] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/neg_index.js
  2285. [0.014271] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/substring.js
  2286. [0.162896] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/HTMLHelpers.js
  2287. [0.048549] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/stringindex.js
  2288. [0.042654] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/length.js
  2289. [0.038837] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/stringtypespec.js
  2290. [0.049255] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concatmulti.js
  2291. [0.013363] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concatmulti_compoundstring.js
  2292. [0.014018] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concatmulti_large.js
  2293. [0.013277] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/concatmulti_loop.js
  2294. [0.023496] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/long_concatstr.js
  2295. [0.030457] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/StringTagFunctions.js
  2296. [0.02612] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/string_object_indices_589140.js
  2297. [0.033462] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/property_and_index_of_string.js
  2298. [0.034896] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/bug_OS_3080673.js
  2299. [0.092769] Passed -> /home/gonzo/Github/ChakraCore/test/Strings/unicode_toUpperCase_toLowerCase.js
  2300. [0.052213] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/remBailout.js
  2301. [0.192064] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/comparison.js
  2302. [0.013442] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/div_min_int.js
  2303. [1.469361] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/instanceof.js
  2304. [0.017518] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/inst_bug.js
  2305. [0.012799] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/isin.js
  2306. [0.07323] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/divide.js
  2307. [0.027236] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/not.js
  2308. [0.022818] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/negate.js
  2309. [0.080945] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/signedshiftleft.js
  2310. [0.07887] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/signedshiftright.js
  2311. [0.078569] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/unsignedshiftright.js
  2312. [0.021607] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/loopbounds.js
  2313. [0.013768] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/not_1.js
  2314. [0.013848] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/shift_constants.js
  2315. [0.014803] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/predecrement.js
  2316. [0.023671] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/preincrement.js
  2317. [0.58616] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/logAnd.js
  2318. [0.153984] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/comparison.js
  2319. [0.063622] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/divide.js
  2320. [0.015071] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/not.js
  2321. [0.014731] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/negate.js
  2322. [0.040688] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/loopbounds.js
  2323. [0.019762] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/not_1.js
  2324. [0.023798] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/shift_constants.js
  2325. [0.021635] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/predecrement.js
  2326. [0.014528] Passed -> /home/gonzo/Github/ChakraCore/test/TaggedIntegers/preincrement.js
  2327. [0.16986] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/acid.js
  2328. [0.51701] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/logOr.js
  2329. [0.049851] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/assertion.js
  2330. [0.038957] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/captures.js
  2331. [0.381043] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/mod.js
  2332. [0.373142] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/class-case.js
  2333. [0.191224] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/crazy.js
  2334. [0.067114] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/es5SpecExamples.js
  2335. [0.381233] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/mul.js
  2336. [0.012949] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/OpEq.js
  2337. [0.111476] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/escapes.js
  2338. [0.03144] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/fastRegexCaptures.js
  2339. [24.701933] Failed -> /home/gonzo/Github/ChakraCore/test/Date/parseISO.js
  2340. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Date/parseISO.js
  2341. Output: (at line 18)
  2342. ----------------------------
  2343. 1899-12-31T22:36:00.000Z
  2344. ----------------------------
  2345. Expected Output:
  2346. ----------------------------
  2347. 0000-01-01T08:00:00.000Z
  2348. ----------------------------
  2349. exit code: 0
  2350. WARNING: /home/gonzo/Github/ChakraCore/test/Date/DateUTC.js should be dateutc.js
  2351. [0.039814] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/lazyVsEagerLastIndex.js
  2352. WARNING: /home/gonzo/Github/ChakraCore/test/Date/DateUTC.baseline should be dateutc.baseline
  2353. [0.016689] Passed -> /home/gonzo/Github/ChakraCore/test/Date/dateutc.js
  2354. [0.031143] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/match_global.js
  2355. [0.02076] Passed -> /home/gonzo/Github/ChakraCore/test/Date/MillisecondTruncationCheckAfterCopyConstructor.js
  2356. [0.037032] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/multiline.js
  2357. [0.076459] Failed -> /home/gonzo/Github/ChakraCore/test/Date/Conversions.js
  2358. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Intl- /home/gonzo/Github/ChakraCore/test/Date/Conversions.js
  2359. Output: (at line 4)
  2360. ----------------------------
  2361. Tue Jan 31 2006 18:00:00 GMT+0100 (CEST)
  2362. ----------------------------
  2363. Expected Output:
  2364. ----------------------------
  2365. Tuesday, January 31, 2006 10:00:00 AM
  2366. ----------------------------
  2367. exit code: 0
  2368. [0.066233] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/NoBacktrackingChomp.js
  2369. [0.056843] Failed -> /home/gonzo/Github/ChakraCore/test/Date/Conversions.js
  2370. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Intl- /home/gonzo/Github/ChakraCore/test/Date/Conversions.js
  2371. Output: (at line 4)
  2372. ----------------------------
  2373. Tue Jan 31 2006 18:00:00 GMT+0100 (CEST)
  2374. ----------------------------
  2375. Expected Output:
  2376. ----------------------------
  2377. Tuesday, January 31, 2006 10:00:00 AM
  2378. ----------------------------
  2379. exit code: 0
  2380. [0.094418] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/nul_character.js
  2381. [0.084537] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/prioritizedalternatives.js
  2382. [0.03426] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/sets.js
  2383. [0.073129] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/split.js
  2384. [0.628989] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/or.js
  2385. [0.640873] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/relops.js
  2386. [1.089367] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/strictequal.js
  2387. [0.472967] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/unaryOps.js
  2388. [0.583948] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/xor.js
  2389. [0.025656] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/new.js
  2390. [0.017498] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/newReturn.js
  2391. [0.023755] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/newBuiltin.js
  2392. [0.021429] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/newProto.js
  2393. [1.408697] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/prototypeInheritance.js
  2394. [0.017006] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/prototypeInheritance2.js
  2395. [0.027435] Passed -> /home/gonzo/Github/ChakraCore/test/Operators/zero.js
  2396. WARNING: /home/gonzo/Github/ChakraCore/test/Prototypes/prototype.js should be Prototype.js
  2397. WARNING: /home/gonzo/Github/ChakraCore/test/Prototypes/prototype.baseline should be Prototype.baseline
  2398. [0.014008] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/Prototype.js
  2399. WARNING: /home/gonzo/Github/ChakraCore/test/Prototypes/prototype2.js should be Prototype2.js
  2400. WARNING: /home/gonzo/Github/ChakraCore/test/Prototypes/prototype2.baseline should be Prototype2.baseline
  2401. [0.036864] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/Prototype2.js
  2402. [0.171211] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/deep.js
  2403. [0.072065] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/initProto.js
  2404. [0.021747] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/ReadOnly.js
  2405. [0.03446] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/shadow.js
  2406. [0.032654] Passed -> /home/gonzo/Github/ChakraCore/test/Prototypes/shadow2.js
  2407. [0.119228] Passed -> /home/gonzo/Github/ChakraCore/test/RWC/OneNote.ribbon.js
  2408. [0.020649] Passed -> /home/gonzo/Github/ChakraCore/test/Regex/captures.js
  2409. [0.04515] Passed -> /home/gonzo/Github/ChakraCore/test/es6/weakset_basic.js
  2410. [0.113477] Passed -> /home/gonzo/Github/ChakraCore/test/es6/weakset_functionality.js
  2411. [0.019384] Passed -> /home/gonzo/Github/ChakraCore/test/es6/blockscope-activationobject.js
  2412. [0.023881] Passed -> /home/gonzo/Github/ChakraCore/test/es6/blockscope-deferred.js
  2413. [0.027893] Passed -> /home/gonzo/Github/ChakraCore/test/es6/blockscope-deferred.js
  2414. [0.168858] Failed -> /home/gonzo/Github/ChakraCore/test/es6/blockscope-functionbinding.js
  2415. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES7AsyncAwait /home/gonzo/Github/ChakraCore/test/es6/blockscope-functionbinding.js
  2416. Output:
  2417. ----------------------------
  2418. Test 1: Simple case with single block-scoped function
  2419. undefined
  2420. function f() { }
  2421. function f() { }
  2422. function g() { }
  2423. function g() { }
  2424. function h() { }
  2425. Test 2: Block-scoped function shadows outer let binding, but leaks into function scope
  2426. undefined
  2427. let f
  2428. function f() { }
  2429. let f
  2430. function f() { }
  2431. Test 3: Assignment to function in block behaves like assigning let variable; function still leaks out to function scope; assignment does not affect function scope binding
  2432. undefined
  2433. let f
  2434. reassigned inner function declared "let" f
  2435. let f
  2436. reassigned outer let f
  2437. function f() { }
  2438. Test 4: Last executed declaration wins; simple case
  2439. function f(one) { }
  2440. function f(one) { }
  2441. function f(two) { }
  2442. function f(two) { }
  2443. Test 5: Inner shadows outer and last executed (inner) wins for function scope
  2444. function f(outer) { }
  2445. function f(inner) { }
  2446. function f(outer) { }
  2447. function f(inner) { }
  2448. Test 6: Last declaration executed wins; loop and conditionals
  2449. undefined
  2450. undefined
  2451. function f(one) { }
  2452. function f(one) { }
  2453. function f(one) { }
  2454. function f(two) { }
  2455. function f(two) { }
  2456. function f(two) { }
  2457. function f(one) { }
  2458. function f(one) { }
  2459. function f(one) { }
  2460. Test 7: Make sure function scope binding is initialized even when it is an activation object (imposed by presence of eval)
  2461. undefined
  2462. function f() { }
  2463. function f() { }
  2464. Test 8: Function scope binding does not occur in strict mode
  2465. ReferenceError: 'f' is undefined
  2466. function f() { }
  2467. ReferenceError: 'f' is undefined
  2468. Test 9: Overwriting user declared var
  2469. var f
  2470. function f() { }
  2471. function f() { }
  2472. Test 10: inner functions before block scope function should bind to function scoped binding, not outer scope
  2473. ----------------------------
  2474. exit code: -11
  2475. [0.170459] Failed -> /home/gonzo/Github/ChakraCore/test/es6/blockscope-functionbinding.js
  2476. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -force:deferparse -ES7AsyncAwait /home/gonzo/Github/ChakraCore/test/es6/blockscope-functionbinding.js
  2477. Output:
  2478. ----------------------------
  2479. Test 1: Simple case with single block-scoped function
  2480. undefined
  2481. function f() { }
  2482. function f() { }
  2483. function g() { }
  2484. function g() { }
  2485. function h() { }
  2486. Test 2: Block-scoped function shadows outer let binding, but leaks into function scope
  2487. undefined
  2488. let f
  2489. function f() { }
  2490. let f
  2491. function f() { }
  2492. Test 3: Assignment to function in block behaves like assigning let variable; function still leaks out to function scope; assignment does not affect function scope binding
  2493. undefined
  2494. let f
  2495. reassigned inner function declared "let" f
  2496. let f
  2497. reassigned outer let f
  2498. function f() { }
  2499. Test 4: Last executed declaration wins; simple case
  2500. function f(one) { }
  2501. function f(one) { }
  2502. function f(two) { }
  2503. function f(two) { }
  2504. Test 5: Inner shadows outer and last executed (inner) wins for function scope
  2505. function f(outer) { }
  2506. function f(inner) { }
  2507. function f(outer) { }
  2508. function f(inner) { }
  2509. Test 6: Last declaration executed wins; loop and conditionals
  2510. undefined
  2511. undefined
  2512. function f(one) { }
  2513. function f(one) { }
  2514. function f(one) { }
  2515. function f(two) { }
  2516. function f(two) { }
  2517. function f(two) { }
  2518. function f(one) { }
  2519. function f(one) { }
  2520. function f(one) { }
  2521. Test 7: Make sure function scope binding is initialized even when it is an activation object (imposed by presence of eval)
  2522. undefined
  2523. function f() { }
  2524. function f() { }
  2525. Test 8: Function scope binding does not occur in strict mode
  2526. ReferenceError: 'f' is undefined
  2527. function f() { }
  2528. ReferenceError: 'f' is undefined
  2529. Test 9: Overwriting user declared var
  2530. var f
  2531. function f() { }
  2532. function f() { }
  2533. Test 10: inner functions before block scope function should bind to function scoped binding, not outer scope
  2534. ----------------------------
  2535. exit code: -11
  2536. [0.012325] Failed -> /home/gonzo/Github/ChakraCore/test/es6/blockscope-functionbinding.js
  2537. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -lic:1 -InitializeInterpreterSlotsWithInvalidStackVar -ES7AsyncAwait /home/gonzo/Github/ChakraCore/test/es6/blockscope-functionbinding.js
  2538. Output: (at line 0)
  2539. ----------------------------
  2540. Invalid Flag : -InitializeInterpreterSlotsWithInvalidStackVar
  2541. ----------------------------
  2542. Expected Output:
  2543. ----------------------------
  2544. ----------------------------
  2545. exit code: 0
  2546. [0.041829] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global.js
  2547. [0.039531] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global_shadowing.js
  2548. [0.035949] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global_shadow_builtins.js
  2549. [0.020474] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global_shadow_builtins_nonconfigurable.js
  2550. [0.017275] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global_shadow_deleted.js
  2551. [0.015239] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global_shadow_accessor.js
  2552. [0.012176] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_global_bug.js
  2553. [0.034836] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_eval_redecl.js
  2554. [0.037194] Passed -> /home/gonzo/Github/ChakraCore/test/es6/letconst_eval_redecl.js
  2555. [0.179247] Failed -> /home/gonzo/Github/ChakraCore/test/es6/definegettersetter.js
  2556. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/es6/definegettersetter.js
  2557. Output:
  2558. ----------------------------
  2559. *** Running test #1 (test01): __defineGetter__ defines an accessor property with getter as specified and enumerable and configurable set to true
  2560. PASSED
  2561. *** Running test #2 (test02): __defineSetter__ defines an accessor property with getter as specified and enumerable and configurable set to true
  2562. PASSED
  2563. *** Running test #3 (test03): __defineGetter__ should not assign a setter and __defineSetter__ should not define a getter
  2564. PASSED
  2565. *** Running test #4 (test04): get and set functions should have access to the object's properties via this
  2566. PASSED
  2567. *** Running test #5 (test05): __defineGetter__ and __defineSetter__ called on the same property are additive; they do not clobber previous accessor
  2568. PASSED
  2569. *** Running test #6 (test06): __defineGetter__ and __defineSetter__ only allow functions as the accessor argument
  2570. ----------------------------
  2571. exit code: -11
  2572. [0.57375] Passed -> /home/gonzo/Github/ChakraCore/test/es6/classes.js
  2573. [0.238359] Failed -> /home/gonzo/Github/ChakraCore/test/es6/classes.js
  2574. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Force:Deferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/classes.js
  2575. Output:
  2576. ----------------------------
  2577. ----------------------------
  2578. exit code: -11
  2579. [0.146021] Passed -> /home/gonzo/Github/ChakraCore/test/es6/classes_bugfixes.js
  2580. [0.130981] Passed -> /home/gonzo/Github/ChakraCore/test/es6/classes_bugfixes.js
  2581. [0.012859] Passed -> /home/gonzo/Github/ChakraCore/test/es6/classes_bug_OS_6471427.js
  2582. [0.012488] Passed -> /home/gonzo/Github/ChakraCore/test/es6/classes_bug_OS_6471427.js
  2583. [0.046438] Passed -> /home/gonzo/Github/ChakraCore/test/es6/classes_bug_OS_7100885.js
  2584. [0.374009] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableBuiltins.js
  2585. [0.127766] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableBuiltins.js
  2586. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Classes -ES6Spread -ES6Generators -Force:Deferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableBuiltins.js
  2587. Output:
  2588. ----------------------------
  2589. ----------------------------
  2590. exit code: -11
  2591. [0.164727] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableAsync.js
  2592. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Classes -ES6Spread -ES6Generators -Off:Deferparse /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableAsync.js
  2593. Output:
  2594. ----------------------------
  2595. Executing test #1 Subclass of Promise - basic functionality
  2596. ----------------------------
  2597. exit code: -11
  2598. [0.16065] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableAsync.js
  2599. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Classes -ES6Spread -ES6Generators -Force:Deferparse /home/gonzo/Github/ChakraCore/test/es6/ES6SubclassableAsync.js
  2600. Output:
  2601. ----------------------------
  2602. Executing test #1 Subclass of Promise - basic functionality
  2603. ----------------------------
  2604. exit code: -11
  2605. [0.1138] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6MathAPIs.js
  2606. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Math -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/ES6MathAPIs.js
  2607. Output:
  2608. ----------------------------
  2609. dlopen() failed; dlerror says 'api-ms-win-crt-math-l1-1-0.dll: cannot open shared object file: No such file or directory'
  2610. pass
  2611. ----------------------------
  2612. exit code: 0
  2613. [0.101827] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6MathAPIs.js
  2614. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6 -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/ES6MathAPIs.js
  2615. Output:
  2616. ----------------------------
  2617. dlopen() failed; dlerror says 'api-ms-win-crt-math-l1-1-0.dll: cannot open shared object file: No such file or directory'
  2618. pass
  2619. ----------------------------
  2620. exit code: 0
  2621. [0.057591] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6NumberAPIs.js
  2622. [0.235295] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6StringAPIs.js
  2623. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6String -ES6RegExSymbols -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/ES6StringAPIs.js
  2624. Output:
  2625. ----------------------------
  2626. *** Running test #6 (5): startsWith returns true if the given search string matches the substring of the given string starting at the given position
  2627. Test threw exception: assert.isFalse failed: expected: false actual: true: string with embedded null character does not start with string that is only different after null character
  2628. FAILED
  2629. *** Running test #8 (7): endsWith returns true if the given search string matches the substring of the given string ending at the given position
  2630. Test threw exception: assert.isFalse failed: expected: false actual: true: string with embedded null character does not end with string that is only different after null character
  2631. FAILED
  2632. Summary of tests: total executed: 12; passed: 10; failed: 2
  2633. ----------------------------
  2634. exit code: 0
  2635. [0.049526] Passed -> /home/gonzo/Github/ChakraCore/test/es6/codePointAt.js
  2636. [0.057131] Passed -> /home/gonzo/Github/ChakraCore/test/es6/stringtemplate_basic.js
  2637. [0.265513] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6StringTemplate.js
  2638. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/ES6StringTemplate.js
  2639. Output:
  2640. ----------------------------
  2641. ----------------------------
  2642. exit code: -11
  2643. [9.563855] Failed -> /home/gonzo/Github/ChakraCore/test/Date/date_cache_bug.js
  2644. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Date/date_cache_bug.js
  2645. Output: (at line 2)
  2646. ----------------------------
  2647. Wed Feb 26 2014 23:00:00 GMT+0100 (CEST) from:2014,1,27
  2648. ----------------------------
  2649. Expected Output:
  2650. ----------------------------
  2651. Forwards loop starts
  2652. ----------------------------
  2653. exit code: 0
  2654. [0.26294] Failed -> /home/gonzo/Github/ChakraCore/test/Date/formatting.js
  2655. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ForceOldDateAPI /home/gonzo/Github/ChakraCore/test/Date/formatting.js
  2656. Output: (at line 0)
  2657. ----------------------------
  2658. Sat Mar 10 2012 23:00:00 GMT+0100 (CEST)
  2659. ----------------------------
  2660. Expected Output:
  2661. ----------------------------
  2662. Sun Mar 11 2012 00:00:00 GMT-0800 (Pacific Standard Time)
  2663. ----------------------------
  2664. exit code: 0
  2665. [0.023737] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagBreakpoints.js
  2666. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -dbgbaseline:JsDiagBreakpoints.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagBreakpoints.js
  2667. Output:
  2668. ----------------------------
  2669. pass
  2670. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2671. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2672. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2673. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2674. ----------------------------
  2675. exit code: 0
  2676. [0.021486] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagEvaluate.js
  2677. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsDiagEvaluate.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagEvaluate.js
  2678. Output:
  2679. ----------------------------
  2680. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2681. pass
  2682. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2683. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2684. ----------------------------
  2685. exit code: 0
  2686. [0.027426] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetFunctionPosition.js
  2687. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsDiagGetFunctionPosition.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetFunctionPosition.js
  2688. Output:
  2689. ----------------------------
  2690. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2691. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2692. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2693. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2694. TypeError: Unable to get property 'foo' of undefined or null reference
  2695. at Global code (jsdiaggetfunctionposition.js:22:1)
  2696. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2697. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2698. ----------------------------
  2699. exit code: 0
  2700. [0.044429] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetScripts.js
  2701. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsDiagGetScripts.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetScripts.js
  2702. Output:
  2703. ----------------------------
  2704. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2705. pass
  2706. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2707. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2708. ----------------------------
  2709. exit code: 0
  2710. [0.033823] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetStackProperties.js
  2711. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsDiagGetStackProperties.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetStackProperties.js
  2712. Output:
  2713. ----------------------------
  2714. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2715. pass
  2716. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2717. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2718. ----------------------------
  2719. exit code: 0
  2720. [0.038683] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetStackTrace.js
  2721. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsDiagGetStackTrace.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagGetStackTrace.js
  2722. Output:
  2723. ----------------------------
  2724. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2725. pass
  2726. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2727. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2728. ----------------------------
  2729. exit code: 0
  2730. [0.032351] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagRequestAsyncBreak.js
  2731. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsDiagRequestAsyncBreak.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsDiagRequestAsyncBreak.js
  2732. Output:
  2733. ----------------------------
  2734. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2735. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2736. pass
  2737. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2738. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2739. ----------------------------
  2740. exit code: 0
  2741. [0.075431] Failed -> /home/gonzo/Github/ChakraCore/test/Debugger/JsrtDebugUtilsAddPropertyType.js
  2742. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -debuglaunch -dbgbaseline:JsrtDebugUtilsAddPropertyType.js.dbg.baseline /home/gonzo/Github/ChakraCore/test/Debugger/JsrtDebugUtilsAddPropertyType.js
  2743. Output:
  2744. ----------------------------
  2745. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2746. pass
  2747. ERROR: ChakraRTInterface::JsCallFunction(targetFunc, args, argCount, result) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2748. ERROR: ChakraRTInterface::JsConvertValueToNumber(result, &numberVal) failed. JsErrorCode=0x10001 (JsErrorInvalidArgument)
  2749. ----------------------------
  2750. exit code: 0
  2751. [0.33281] Passed -> /home/gonzo/Github/ChakraCore/test/DynamicCode/eval-nativenumber.js
  2752. [0.016488] Passed -> /home/gonzo/Github/ChakraCore/test/EH/capture.js
  2753. [0.017602] Passed -> /home/gonzo/Github/ChakraCore/test/EH/capture.js
  2754. [0.016716] Passed -> /home/gonzo/Github/ChakraCore/test/EH/capture.js
  2755. [0.08865] Passed -> /home/gonzo/Github/ChakraCore/test/EH/oos2.js
  2756. [1.174176] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6StringTemplateSlow.js
  2757. [0.053662] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try1.js
  2758. [0.026917] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try2.js
  2759. [0.040772] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try3.js
  2760. [0.026025] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try4.js
  2761. [0.175445] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6ArrayAPI.js
  2762. [0.052704] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try5-ES3.js
  2763. [0.0263] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try6.js
  2764. [0.020541] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try.bug188541.js
  2765. [0.039907] Passed -> /home/gonzo/Github/ChakraCore/test/EH/try.bug188541.v5.js
  2766. [0.135458] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6ArrayUseConstructor.js
  2767. [0.028633] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6ArrayUseConstructor_v5.js
  2768. [0.135251] Passed -> /home/gonzo/Github/ChakraCore/test/EH/so.js
  2769. [0.036132] Passed -> /home/gonzo/Github/ChakraCore/test/EH/newso.js
  2770. [0.013571] Passed -> /home/gonzo/Github/ChakraCore/test/EH/trylabel.js
  2771. [0.01279] Passed -> /home/gonzo/Github/ChakraCore/test/EH/alignment.js
  2772. [0.040717] Passed -> /home/gonzo/Github/ChakraCore/test/EH/101832.js
  2773. [0.217785] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Symbol.js
  2774. [0.007022] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Symbol_540238.js
  2775. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -RecyclerStress /home/gonzo/Github/ChakraCore/test/es6/ES6Symbol_540238.js
  2776. Output:
  2777. ----------------------------
  2778. Invalid Flag : -RecyclerStress
  2779. Usage: ch <source file>
  2780. [flaglist] is not supported for Release mode
  2781. ----------------------------
  2782. exit code: 0
  2783. [0.071708] Passed -> /home/gonzo/Github/ChakraCore/test/Error/errorProps.js
  2784. [0.053279] Passed -> /home/gonzo/Github/ChakraCore/test/Error/ErrorCtorProps.js
  2785. [0.157057] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Promise.js
  2786. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6 -ES6Promise -es6tostringtag -ES6Species -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/ES6Promise.js
  2787. Output:
  2788. ----------------------------
  2789. ----------------------------
  2790. exit code: -11
  2791. [0.053971] Passed -> /home/gonzo/Github/ChakraCore/test/Error/NativeErrors.js
  2792. WARNING: /home/gonzo/Github/ChakraCore/test/Error/OutOfMem.js should be outofmem.js
  2793. WARNING: /home/gonzo/Github/ChakraCore/test/Error/OutOfMem.baseline should be outofmem.baseline
  2794. [0.03234] Passed -> /home/gonzo/Github/ChakraCore/test/Error/outofmem.js
  2795. WARNING: /home/gonzo/Github/ChakraCore/test/Error/Stack.js should be stack.js
  2796. [0.126785] Failed -> /home/gonzo/Github/ChakraCore/test/es6/ES6PromiseAsync.js
  2797. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6 -ES6Promise /home/gonzo/Github/ChakraCore/test/es6/ES6PromiseAsync.js
  2798. Output:
  2799. ----------------------------
  2800. Executing test #1 - Promise basic behavior
  2801. ----------------------------
  2802. exit code: -11
  2803. [0.013279] Passed -> /home/gonzo/Github/ChakraCore/test/es6/es6_stable.js
  2804. [0.013081] Passed -> /home/gonzo/Github/ChakraCore/test/es6/es6_stable.js
  2805. [0.013257] Passed -> /home/gonzo/Github/ChakraCore/test/es6/es6_all.js
  2806. [0.027945] Failed -> /home/gonzo/Github/ChakraCore/test/es6/normalize.js
  2807. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Unicode /home/gonzo/Github/ChakraCore/test/es6/normalize.js
  2808. Output: (at line 6)
  2809. ----------------------------
  2810. Error: Out of memory
  2811. ----------------------------
  2812. Expected Output:
  2813. ----------------------------
  2814. Passed! NFD normalization test.
  2815. ----------------------------
  2816. exit code: 0
  2817. [0.117547] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_escape_sequences.js
  2818. [0.023131] Failed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_6_identifiers.js
  2819. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Unicode /home/gonzo/Github/ChakraCore/test/es6/unicode_6_identifiers.js
  2820. Output: (at line 0)
  2821. ----------------------------
  2822. SyntaxError: Invalid character
  2823. ----------------------------
  2824. Expected Output:
  2825. ----------------------------
  2826. 3
  2827. ----------------------------
  2828. exit code: 0
  2829. [0.058476] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_regex_surrogate_atoms.js
  2830. [0.362392] Failed -> /home/gonzo/Github/ChakraCore/test/es6/spreadIterator.js
  2831. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Classes -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/spreadIterator.js
  2832. Output:
  2833. ----------------------------
  2834. ----------------------------
  2835. exit code: -11
  2836. [0.034757] Passed -> /home/gonzo/Github/ChakraCore/test/es6/reflectConstructConsumeNewTarget.js
  2837. [0.030318] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ReflectApiTests.js
  2838. [0.043492] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxyTrapConsumeNewTarget.js
  2839. [0.039696] Passed -> /home/gonzo/Github/ChakraCore/test/es6/CrossContextSpreadfunctionCall.js
  2840. [0.219756] Failed -> /home/gonzo/Github/ChakraCore/test/es6/spread.js
  2841. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Spread -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/spread.js
  2842. Output:
  2843. ----------------------------
  2844. ----------------------------
  2845. exit code: -11
  2846. [0.019345] Passed -> /home/gonzo/Github/ChakraCore/test/es6/Bug517864.js
  2847. [0.019683] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_6_identifier_Blue511452.js
  2848. [0.017552] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_idDeferParseFunctions.js
  2849. [0.013622] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_6_identifier_Blue524737.js
  2850. [0.015586] Passed -> /home/gonzo/Github/ChakraCore/test/es6/supersyntax02.js
  2851. [0.019337] Passed -> /home/gonzo/Github/ChakraCore/test/es6/supersyntax05.js
  2852. [0.022699] Passed -> /home/gonzo/Github/ChakraCore/test/es6/supersyntax06.js
  2853. [0.279092] Failed -> /home/gonzo/Github/ChakraCore/test/es6/objlit.js
  2854. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6 -ES6ObjectLiterals -ES6DefaultArgs -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/objlit.js
  2855. Output:
  2856. ----------------------------
  2857. ----------------------------
  2858. exit code: -11
  2859. [0.034191] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_blue_533163.js
  2860. [0.138262] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Iterators-forof.js
  2861. [0.512531] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Iterators-apis.js
  2862. [0.100411] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Species-apis.js
  2863. [0.041832] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Species-bugs.js
  2864. [0.027729] Passed -> /home/gonzo/Github/ChakraCore/test/es6/blue595539.js
  2865. [0.070598] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxytest6.js
  2866. [0.019597] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxybug3.js
  2867. [0.026245] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxyprotobug.js
  2868. [0.013483] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxybug.js
  2869. [0.013716] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxyenumbug.js
  2870. [0.023076] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxy-issue884.js
  2871. [0.053259] Passed -> /home/gonzo/Github/ChakraCore/test/es6/object-is.js
  2872. [0.058987] Passed -> /home/gonzo/Github/ChakraCore/test/es6/object-assign.js
  2873. [0.303956] Failed -> /home/gonzo/Github/ChakraCore/test/es6/default.js
  2874. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -force:deferparse -ES6DefaultArgs -ES7AsyncAwait -ES6Generators -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/default.js
  2875. Output:
  2876. ----------------------------
  2877. ----------------------------
  2878. exit code: -11
  2879. WARNING: /home/gonzo/Github/ChakraCore/test/Error/Stack.baseline should be stack.baseline
  2880. [3.13831] Passed -> /home/gonzo/Github/ChakraCore/test/Error/stack.js
  2881. WARNING: /home/gonzo/Github/ChakraCore/test/Error/Stack2.js should be stack2.js
  2882. WARNING: /home/gonzo/Github/ChakraCore/test/Error/Stack2.baseline should be stack2.baseline
  2883. [0.043787] Passed -> /home/gonzo/Github/ChakraCore/test/Error/stack2.js
  2884. [0.185613] Passed -> /home/gonzo/Github/ChakraCore/test/es6/default.js
  2885. [0.279371] Failed -> /home/gonzo/Github/ChakraCore/test/es6/default.js
  2886. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -force:CachedScope -ES6DefaultArgs -ES7AsyncAwait -ES6Generators -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/default.js
  2887. Output:
  2888. ----------------------------
  2889. ----------------------------
  2890. exit code: -11
  2891. [0.362517] Passed -> /home/gonzo/Github/ChakraCore/test/Error/errorCtor.js
  2892. [0.028772] Passed -> /home/gonzo/Github/ChakraCore/test/Error/errorNum.js
  2893. [0.214323] Passed -> /home/gonzo/Github/ChakraCore/test/es6/default-splitscope.js
  2894. [0.29871] Passed -> /home/gonzo/Github/ChakraCore/test/Error/CallNonFunction.js
  2895. [0.023985] Passed -> /home/gonzo/Github/ChakraCore/test/Error/variousErrors.js
  2896. [0.159743] Passed -> /home/gonzo/Github/ChakraCore/test/es6/default-splitscope.js
  2897. [0.019888] Passed -> /home/gonzo/Github/ChakraCore/test/es6/default-splitscope-undodeferparse.js
  2898. [0.232945] Failed -> /home/gonzo/Github/ChakraCore/test/Error/RuntimeCompileStackOverflow.js
  2899. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Error/RuntimeCompileStackOverflow.js
  2900. Output: (at line 0)
  2901. ----------------------------
  2902. ----------------------------
  2903. Expected Output:
  2904. ----------------------------
  2905. Out of stack space
  2906. ----------------------------
  2907. exit code: 0
  2908. [0.013243] Passed -> /home/gonzo/Github/ChakraCore/test/Error/bug560940.js
  2909. [0.025952] Passed -> /home/gonzo/Github/ChakraCore/test/Error/inlineSameFunc.js
  2910. [0.018421] Passed -> /home/gonzo/Github/ChakraCore/test/Error/PartInitStackFrame.js
  2911. [0.031623] Passed -> /home/gonzo/Github/ChakraCore/test/Error/validate_line_column.js
  2912. [0.321244] Failed -> /home/gonzo/Github/ChakraCore/test/es6/rest.js
  2913. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Rest -ES6ObjectLiterals -ES6Spread -ES6DefaultArgs -ES6Classes -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/rest.js
  2914. Output:
  2915. ----------------------------
  2916. ----------------------------
  2917. exit code: -11
  2918. [0.03244] Passed -> /home/gonzo/Github/ChakraCore/test/Error/validate_line_column.js
  2919. [0.040906] Passed -> /home/gonzo/Github/ChakraCore/test/Function/apply.js
  2920. [0.076463] Passed -> /home/gonzo/Github/ChakraCore/test/Function/apply3.js
  2921. [0.02456] Passed -> /home/gonzo/Github/ChakraCore/test/Function/applyArgs.js
  2922. [0.04311] Passed -> /home/gonzo/Github/ChakraCore/test/Function/arguments1.js
  2923. [0.368199] Failed -> /home/gonzo/Github/ChakraCore/test/es6/rest.js
  2924. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Rest -ES6ObjectLiterals -ES6Spread -ES6DefaultArgs -ES6Classes -force:deferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/rest.js
  2925. Output:
  2926. ----------------------------
  2927. ----------------------------
  2928. exit code: -11
  2929. [0.170968] Failed -> /home/gonzo/Github/ChakraCore/test/Function/arguments2.js
  2930. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Function/arguments2.js
  2931. Output:
  2932. ----------------------------
  2933. true
  2934. true
  2935. Test1 : 30
  2936. PASSED : Test1 exp: 30 act : 30
  2937. Test2 arguments[0] : 100
  2938. PASSED : Test2 arguments[0] exp: 100 act : 100
  2939. Test2 arguments[1] : 200
  2940. PASSED : Test2 arguments[1] exp: 200 act : 200
  2941. Test2 a : 300
  2942. PASSED : Test2 a exp: 300 act : 300
  2943. Test2 b : 400
  2944. PASSED : Test2 b exp: 400 act : 400
  2945. Test2 : 1400
  2946. PASSED : Test2 exp: 1400 act : 1400
  2947. Test3 : 0
  2948. PASSED : Test3 exp: 0 act : 0
  2949. Test4 : 0
  2950. PASSED : Test4 exp: 0 act : 0
  2951. Test5 1 : 2
  2952. PASSED : Test5 1 exp: 2 act : 2
  2953. Test5 2 : 2
  2954. PASSED : Test5 2 exp: 2 act : 2
  2955. Test5 3 : 3
  2956. PASSED : Test5 3 exp: 3 act : 3
  2957. Test6 1 : 1
  2958. PASSED : Test6 1 exp: 1 act : 1
  2959. Test6 2 : 2
  2960. PASSED : Test6 2 exp: 2 act : 2
  2961. Test6 3 : 3
  2962. PASSED : Test6 3 exp: 3 act : 3
  2963. Test7 : 0
  2964. PASSED : Test7 exp: 0 act : 0
  2965. Test7 : 2
  2966. PASSED : Test7 exp: 2 act : 2
  2967. Test8 : 5
  2968. Test8 : 4
  2969. Test8 : 3
  2970. Test8 : 2
  2971. Test8 : 1
  2972. Test8 : 0
  2973. Test8 : 5
  2974. PASSED : Test8 exp: 5 act : 5
  2975. true
  2976. undefined undefined 0
  2977. undefined undefined test
  2978. false
  2979. true
  2980. Test9 : test
  2981. PASSED : Test9 exp: test act : test
  2982. true
  2983. 10 undefined 1
  2984. 10 undefined test
  2985. true
  2986. true
  2987. Test9 : test
  2988. PASSED : Test9 exp: test act : test
  2989. true
  2990. 10 20 2
  2991. 10 20 test
  2992. true
  2993. true
  2994. Test9 : test
  2995. PASSED : Test9 exp: test act : test
  2996. true
  2997. 10 20 3
  2998. 10 20 test
  2999. true
  3000. true
  3001. Test9 : test
  3002. PASSED : Test9 exp: test act : test
  3003. Test10.1 : []
  3004. PASSED : Test10.1 exp: [] act : []
  3005. Test10.1 : [0: 13]
  3006. PASSED : Test10.1 exp: [0: 13] act : [0: 13]
  3007. Test10.1 : [0: 13, 1: 24]
  3008. PASSED : Test10.1 exp: [0: 13, 1: 24] act : [0: 13, 1: 24]
  3009. Test10.1 : [0: 13, 1: 24, 2: string, 3: true]
  3010. PASSED : Test10.1 exp: [0: 13, 1: 24, 2: string, 3: true] act : [0: 13, 1: 24, 2: string, 3: true]
  3011. Test10.2 : [0: 98, 8: false, 10: 21, foo: bar]
  3012. PASSED : Test10.2 exp: [0: 98, 8: false, 10: 21, foo: bar] act : [0: 98, 8: false, 10: 21, foo: bar]
  3013. Test10.2 : [0: 98, 8: false, 10: 21, foo: bar]
  3014. PASSED : Test10.2 exp: [0: 98, 8: false, 10: 21, foo: bar] act : [0: 98, 8: false, 10: 21, foo: bar]
  3015. Test10.2 : [0: 98, 1: 54, 8: false, 10: 21, foo: bar]
  3016. PASSED : Test10.2 exp: [0: 98, 1: 54, 8: false, 10: 21, foo: bar] act : [0: 98, 1: 54, 8: false, 10: 21, foo: bar]
  3017. Test10.2 : [0: 98, 1: 54, 2: string, 3: true, 8: false, 10: 21, foo: bar]
  3018. PASSED : Test10.2 exp: [0: 98, 1: 54, 2: string, 3: true, 8: false, 10: 21, foo: bar] act : [0: 98, 1: 54, 2: string, 3: true, 8: false, 10: 21, foo: bar]
  3019. Test10.3.1 : []
  3020. PASSED : Test10.3.1 exp: [] act : []
  3021. Test10.3.2 : [1: arg1, 2: arg2, 6: arg6, foo: bar]
  3022. PASSED : Test10.3.2 exp: [1: arg1, 2: arg2, 6: arg6, foo: bar] act : [1: arg1, 2: arg2, 6: arg6, foo: bar]
  3023. Test10.3.1 : [0: 13]
  3024. PASSED : Test10.3.1 exp: [0: 13] act : [0: 13]
  3025. Test10.3.2 : [0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar]
  3026. PASSED : Test10.3.2 exp: [0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar] act : [0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar]
  3027. Test10.3.1 : [0: 13]
  3028. PASSED : Test10.3.1 exp: [0: 13] act : [0: 13]
  3029. Test10.3.2 : [0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar]
  3030. PASSED : Test10.3.2 exp: [0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar] act : [0: 13, 1: arg1, 2: arg2, 6: arg6, foo: bar]
  3031. Test10.3.1 : [0: 13, 2: string]
  3032. PASSED : Test10.3.1 exp: [0: 13, 2: string] act : [0: 13, 2: string]
  3033. Test10.3.2 : [0: 13, 2: arg2, 1: arg1, 6: arg6, foo: bar]
  3034. PASSED : Test10.3.2 exp: [0: 13, 2: arg2, 1: arg1, 6: arg6, foo: bar] act : [0: 13, 2: arg2, 1: arg1, 6: arg6, foo: bar]
  3035. ----------------------------
  3036. exit code: -11
  3037. [0.01852] Passed -> /home/gonzo/Github/ChakraCore/test/Function/arguments3.js
  3038. [0.013909] Passed -> /home/gonzo/Github/ChakraCore/test/Function/arguments4.js
  3039. [0.10249] Passed -> /home/gonzo/Github/ChakraCore/test/Function/argumentsMisc.js
  3040. [0.276495] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-syntax.js
  3041. [0.014974] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-deferparse.js
  3042. [0.178316] Failed -> /home/gonzo/Github/ChakraCore/test/Function/arguments.es5.js
  3043. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Function/arguments.es5.js
  3044. Output:
  3045. ----------------------------
  3046. *** Running test #1 (test01): formal arg: simple: verify connection: named vs indexed arg
  3047. ----------------------------
  3048. exit code: -11
  3049. [0.056266] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-apis.js
  3050. [0.235439] Failed -> /home/gonzo/Github/ChakraCore/test/es6/generators-functionality.js
  3051. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Generators -ES6Classes -ES6DefaultArgs -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/generators-functionality.js
  3052. Output:
  3053. ----------------------------
  3054. ----------------------------
  3055. exit code: -11
  3056. [0.263325] Passed -> /home/gonzo/Github/ChakraCore/test/Function/argumentsResolution.js
  3057. [0.028594] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-deferred.js
  3058. [0.143488] Failed -> /home/gonzo/Github/ChakraCore/test/es6/generators-deferred.js
  3059. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Generators -JitES6Generators -ES6Classes -serialized /home/gonzo/Github/ChakraCore/test/es6/generators-deferred.js
  3060. Output:
  3061. ----------------------------
  3062. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  3063. ----------------------------
  3064. exit code: -11
  3065. [0.013784] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-undodefer.js
  3066. [0.160652] Passed -> /home/gonzo/Github/ChakraCore/test/Function/argumentsLimits.js
  3067. [0.017884] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-cachedscope.js
  3068. [0.040381] Passed -> /home/gonzo/Github/ChakraCore/test/Function/someMoreArguments.js
  3069. [0.047146] Passed -> /home/gonzo/Github/ChakraCore/test/Function/bind.js
  3070. [0.022951] Passed -> /home/gonzo/Github/ChakraCore/test/Function/call1.js
  3071. [0.131842] Failed -> /home/gonzo/Github/ChakraCore/test/es6/generators-applyargs.js
  3072. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Generators -JitES6Generators -off:inlineapply /home/gonzo/Github/ChakraCore/test/es6/generators-applyargs.js
  3073. Output:
  3074. [0.027996] Passed -> /home/gonzo/Github/ChakraCore/test/Function/call2.js
  3075. ----------------------------
  3076. ----------------------------
  3077. exit code: -11
  3078. [0.018883] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generators-applyargs.js
  3079. [0.077393] Passed -> /home/gonzo/Github/ChakraCore/test/Function/CallerArgs.js
  3080. [0.020856] Passed -> /home/gonzo/Github/ChakraCore/test/Function/callsideeffects.js
  3081. [0.030792] Passed -> /home/gonzo/Github/ChakraCore/test/Function/catchsymbolvar.js
  3082. [0.018263] Passed -> /home/gonzo/Github/ChakraCore/test/Function/newsideeffect.js
  3083. [0.017271] Passed -> /home/gonzo/Github/ChakraCore/test/Function/newsideeffect.js
  3084. [0.093851] Passed -> /home/gonzo/Github/ChakraCore/test/Function/callmissingtgt.js
  3085. [0.191071] Failed -> /home/gonzo/Github/ChakraCore/test/Function/defernested.js
  3086. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Function/defernested.js
  3087. Output:
  3088. ----------------------------
  3089. Nested in function expression
  3090. ----------------------------
  3091. exit code: -11
  3092. [0.4823] Passed -> /home/gonzo/Github/ChakraCore/test/es6/destructuring.js
  3093. [0.14062] Failed -> /home/gonzo/Github/ChakraCore/test/Function/defernested.js
  3094. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Force:Deferparse -DeferNested /home/gonzo/Github/ChakraCore/test/Function/defernested.js
  3095. Output:
  3096. ----------------------------
  3097. Nested in function expression
  3098. ----------------------------
  3099. exit code: -11
  3100. [0.032586] Passed -> /home/gonzo/Github/ChakraCore/test/Function/jitLoopBody.js
  3101. [0.053928] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredParsing.js
  3102. [0.043213] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredParsing.js
  3103. [0.018574] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredGetterSetter.js
  3104. [0.013319] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredBadContinue.js
  3105. [0.331082] Passed -> /home/gonzo/Github/ChakraCore/test/es6/destructuring_obj.js
  3106. [0.013354] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredBadContinue.js
  3107. [0.021088] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredWith.js
  3108. [0.014713] Passed -> /home/gonzo/Github/ChakraCore/test/Function/deferredWith2.js
  3109. [0.019675] Passed -> /home/gonzo/Github/ChakraCore/test/Function/newFunction.js
  3110. [0.01823] Passed -> /home/gonzo/Github/ChakraCore/test/Function/prototype.js
  3111. [0.016837] Passed -> /home/gonzo/Github/ChakraCore/test/Function/TApply1.js
  3112. [0.018836] Passed -> /home/gonzo/Github/ChakraCore/test/Function/toString.js
  3113. [0.153689] Passed -> /home/gonzo/Github/ChakraCore/test/es6/destructuring_params.js
  3114. [0.079401] Passed -> /home/gonzo/Github/ChakraCore/test/es6/destructuring_catch.js
  3115. [0.174913] Passed -> /home/gonzo/Github/ChakraCore/test/Function/funcExpr.js
  3116. [0.016992] Passed -> /home/gonzo/Github/ChakraCore/test/Function/moreFuncExpr.js
  3117. [0.016549] Passed -> /home/gonzo/Github/ChakraCore/test/Function/moreFuncExpr.js
  3118. [0.016783] Passed -> /home/gonzo/Github/ChakraCore/test/Function/evenMoreFuncExpr3.js
  3119. [0.021713] Passed -> /home/gonzo/Github/ChakraCore/test/Function/someMoreFuncExpr.js
  3120. [0.173271] Passed -> /home/gonzo/Github/ChakraCore/test/es6/destructuring_bugs.js
  3121. [0.015052] Passed -> /home/gonzo/Github/ChakraCore/test/es6/bug_279376.js
  3122. [0.027205] Passed -> /home/gonzo/Github/ChakraCore/test/Function/constructor.js
  3123. [0.019715] Passed -> /home/gonzo/Github/ChakraCore/test/Function/ctrFlags.js
  3124. [0.027321] Passed -> /home/gonzo/Github/ChakraCore/test/es6/OS_917200.js
  3125. [0.00878] Failed -> /home/gonzo/Github/ChakraCore/test/es6/blue_641922.js
  3126. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Rest -RecyclerNoPageReuse -PageHeap:2 /home/gonzo/Github/ChakraCore/test/es6/blue_641922.js
  3127. Output: (at line 0)
  3128. ----------------------------
  3129. Invalid Flag : -RecyclerNoPageReuse
  3130. ----------------------------
  3131. Expected Output:
  3132. ----------------------------
  3133. ReferenceError: 'v20' is undefined
  3134. ----------------------------
  3135. exit code: 0
  3136. [0.029689] Passed -> /home/gonzo/Github/ChakraCore/test/Function/typeErrorAccessor.js
  3137. [0.025398] Passed -> /home/gonzo/Github/ChakraCore/test/es6/bug_981217.js
  3138. [0.041865] Passed -> /home/gonzo/Github/ChakraCore/test/Function/FuncBody.js
  3139. [0.028526] Passed -> /home/gonzo/Github/ChakraCore/test/es6/objlit-shorthand-error.js
  3140. [0.022255] Passed -> /home/gonzo/Github/ChakraCore/test/es6/generator-strict-error.js
  3141. [0.04046] Failed -> /home/gonzo/Github/ChakraCore/test/Function/FuncBody.bug133933.js
  3142. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -trace:FunctionSourceInfoParse -off:deferparse /home/gonzo/Github/ChakraCore/test/Function/FuncBody.bug133933.js
  3143. exit code: 0
  3144. [0.069668] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-annex-b.js
  3145. [0.04353] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-case-folding.js
  3146. [0.007251] Failed -> /home/gonzo/Github/ChakraCore/test/es6/regex-octoquad.js
  3147. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -RegexOptimize -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/regex-octoquad.js
  3148. Output:
  3149. ----------------------------
  3150. Invalid Flag : -RegexOptimize
  3151. Usage: ch <source file>
  3152. [flaglist] is not supported for Release mode
  3153. ----------------------------
  3154. exit code: 0
  3155. [0.032145] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-quantifiers.js
  3156. [0.024521] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-code-point.js
  3157. [0.045336] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-unicode.js
  3158. [0.110157] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-set.js
  3159. [0.437834] Passed -> /home/gonzo/Github/ChakraCore/test/Function/FuncBody.bug227901.js
  3160. [0.142157] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regex-prototype-properties.js
  3161. [0.140455] Failed -> /home/gonzo/Github/ChakraCore/test/es6/regex-symbols.js
  3162. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6RegExSymbols -ES6RegExPrototypeProperties -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/regex-symbols.js
  3163. Output:
  3164. ----------------------------
  3165. ----------------------------
  3166. exit code: -11
  3167. [0.06235] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regexflags.js
  3168. [0.02676] Passed -> /home/gonzo/Github/ChakraCore/test/es6/regexflags-disabled-features.js
  3169. [0.049971] Passed -> /home/gonzo/Github/ChakraCore/test/es6/RegExpApisTestWithStickyFlag.js
  3170. [0.447292] Passed -> /home/gonzo/Github/ChakraCore/test/Function/FuncBody.bug232281.js
  3171. [0.01342] Passed -> /home/gonzo/Github/ChakraCore/test/Function/FuncBody.bug236810.js
  3172. [0.016482] Passed -> /home/gonzo/Github/ChakraCore/test/Function/bug_258259.js
  3173. [0.053632] Passed -> /home/gonzo/Github/ChakraCore/test/Function/sameNamePara.js
  3174. [0.215663] Passed -> /home/gonzo/Github/ChakraCore/test/es6/stickyflag.js
  3175. [0.011858] Passed -> /home/gonzo/Github/ChakraCore/test/es6/utfbug.js
  3176. [0.014405] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxybugWithLdFld.js
  3177. [0.051853] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxybugWithproto.js
  3178. [0.05487] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ProxyInProxy.js
  3179. [0.031376] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ProxySetPrototypeOf.js
  3180. [0.027128] Passed -> /home/gonzo/Github/ChakraCore/test/es6/arraywithproxy.js
  3181. [0.016266] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxytest8.js
  3182. [0.107187] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proxytest9.js
  3183. [0.053013] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Function_bugs.js
  3184. [0.015087] Passed -> /home/gonzo/Github/ChakraCore/test/es6/OS_2700778.js
  3185. [0.020181] Passed -> /home/gonzo/Github/ChakraCore/test/es6/bug_OS_2184795.js
  3186. [3.132247] Passed -> /home/gonzo/Github/ChakraCore/test/Function/closure.js
  3187. [0.019543] Passed -> /home/gonzo/Github/ChakraCore/test/Function/undefThis.js
  3188. [0.120751] Failed -> /home/gonzo/Github/ChakraCore/test/Function/stackargs.js
  3189. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/Function/stackargs.js
  3190. Output:
  3191. ----------------------------
  3192. Test case #1
  3193. undefined
  3194. function foo()
  3195. {
  3196. write(arguments.caller);
  3197. write(arguments.callee);
  3198. }
  3199. Test case #2
  3200. ----------------------------
  3201. exit code: -11
  3202. [0.024463] Passed -> /home/gonzo/Github/ChakraCore/test/Function/StackArgs_MaxInterpret.js
  3203. [0.030885] Passed -> /home/gonzo/Github/ChakraCore/test/Function/childCallsEvalJitLoopBody.js
  3204. [0.021647] Passed -> /home/gonzo/Github/ChakraCore/test/Function/calli.js
  3205. [0.02113] Passed -> /home/gonzo/Github/ChakraCore/test/Function/caller_replaced_proto.js
  3206. [0.020637] Passed -> /home/gonzo/Github/ChakraCore/test/Function/bug542360.js
  3207. [0.059122] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  3208. [0.057964] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  3209. [0.061688] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  3210. [0.05557] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  3211. [0.036044] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  3212. [0.140545] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3213. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3214. Output: (at line 81)
  3215. ----------------------------
  3216. o = Tue Dec 03 2013 00:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3217. ----------------------------
  3218. Expected Output:
  3219. ----------------------------
  3220. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3221. ----------------------------
  3222. exit code: 0
  3223. [0.129005] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3224. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:globOpt /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3225. Output: (at line 81)
  3226. ----------------------------
  3227. o = Mon Dec 02 2013 23:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3228. ----------------------------
  3229. Expected Output:
  3230. ----------------------------
  3231. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3232. ----------------------------
  3233. exit code: 0
  3234. [0.117194] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3235. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:inline /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3236. Output: (at line 81)
  3237. ----------------------------
  3238. o = Mon Dec 02 2013 23:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3239. ----------------------------
  3240. Expected Output:
  3241. ----------------------------
  3242. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3243. ----------------------------
  3244. exit code: 0
  3245. [0.071197] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3246. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:objTypeSpec /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3247. Output: (at line 81)
  3248. ----------------------------
  3249. o = Mon Dec 02 2013 23:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3250. ----------------------------
  3251. Expected Output:
  3252. ----------------------------
  3253. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3254. ----------------------------
  3255. exit code: 0
  3256. [0.13738] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3257. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:objTypeSpecNewObj /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3258. Output: (at line 81)
  3259. ----------------------------
  3260. o = Tue Dec 03 2013 00:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3261. ----------------------------
  3262. Expected Output:
  3263. ----------------------------
  3264. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3265. ----------------------------
  3266. exit code: 0
  3267. [0.072793] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3268. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:objTypeSpecNewObj -off:fixedNewObj /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3269. Output: (at line 81)
  3270. ----------------------------
  3271. o = Tue Dec 03 2013 00:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3272. ----------------------------
  3273. Expected Output:
  3274. ----------------------------
  3275. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3276. ----------------------------
  3277. exit code: 0
  3278. [0.12115] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3279. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:fixedMethods /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3280. Output: (at line 81)
  3281. ----------------------------
  3282. o = Mon Dec 02 2013 23:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3283. ----------------------------
  3284. Expected Output:
  3285. ----------------------------
  3286. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3287. ----------------------------
  3288. exit code: 0
  3289. [0.180868] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3290. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:splitNewScObject /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3291. Output: (at line 81)
  3292. ----------------------------
  3293. o = Tue Dec 03 2013 00:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3294. ----------------------------
  3295. Expected Output:
  3296. ----------------------------
  3297. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3298. ----------------------------
  3299. exit code: 0
  3300. [0.182759] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3301. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:objTypeSpecNewObj -off:splitNewScObject /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3302. Output: (at line 81)
  3303. ----------------------------
  3304. o = Tue Dec 03 2013 00:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3305. ----------------------------
  3306. Expected Output:
  3307. ----------------------------
  3308. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3309. ----------------------------
  3310. exit code: 0
  3311. [0.106718] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3312. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -maxinterpretcount:2 -off:objTypeSpecNewObj -off:fixedNewObj -off:splitNewScObject /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.2.js
  3313. Output: (at line 81)
  3314. ----------------------------
  3315. o = Tue Dec 03 2013 00:00:00 GMT+0100 (CEST) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3316. ----------------------------
  3317. Expected Output:
  3318. ----------------------------
  3319. o = Tue Dec 03 2013 00:00:00 GMT-0800 (Pacific Standard Time) ({ a: undefined, b: undefined, c: undefined, p: undefined, q: undefined, x: 4, y: 5 })
  3320. ----------------------------
  3321. exit code: 0
  3322. [0.049984] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3323. [0.034527] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3324. [0.033894] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3325. [0.036048] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3326. [0.03368] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3327. [0.05895] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3328. [0.076871] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3329. [0.104055] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3330. [0.058241] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
  3331. [0.055552] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3332. [0.030531] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3333. [0.039906] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3334. [0.046462] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3335. [0.042023] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3336. [0.028854] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3337. [0.046611] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3338. [0.030447] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3339. [0.02916] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.2.js
  3340. [0.013211] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/FieldHoist_MaxInterpret.js
  3341. [0.014034] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/markTemp.js
  3342. [0.015773] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/rootObj-1.js
  3343. [0.013828] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/finaltypebug.js
  3344. [0.026517] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/finaltype2.js
  3345. [0.016326] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/finaltype2.js
  3346. [0.014384] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/finaltype-objheaderinlining1.js
  3347. [0.014082] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/finaltype-objheaderinlining2.js
  3348. [0.015305] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/finaltype-objheaderinlining3.js
  3349. [0.014758] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_accessorinlining1.js
  3350. [0.017267] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_accessorinlining2.js
  3351. [0.016283] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck.js
  3352. [0.12906] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck2.js
  3353. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -force:deferparse -force:inline -force:scriptfunctionwithinlinecache /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck2.js
  3354. Output:
  3355. ----------------------------
  3356. ----------------------------
  3357. exit code: -11
  3358. [0.077819] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck3.js
  3359. [0.017332] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck4.js
  3360. [0.017994] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck5.js
  3361. [0.02369] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fixedfieldmonocheck6.js
  3362. [0.016377] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/add-prop-to-dictionary.js
  3363. [0.065455] Passed -> /home/gonzo/Github/ChakraCore/test/loop/loop.js
  3364. [0.04102] Passed -> /home/gonzo/Github/ChakraCore/test/loop/loop.js
  3365. [0.028548] Passed -> /home/gonzo/Github/ChakraCore/test/loop/loopinversion.js
  3366. [0.053278] Passed -> /home/gonzo/Github/ChakraCore/test/loop/loopinversion.js
  3367. [0.062734] Passed -> /home/gonzo/Github/ChakraCore/test/loop/loopinversion.js
  3368. [0.043543] Passed -> /home/gonzo/Github/ChakraCore/test/loop/infinite.js
  3369. [0.036238] Passed -> /home/gonzo/Github/ChakraCore/test/strict/GlobalEval.js
  3370. [0.037296] Passed -> /home/gonzo/Github/ChakraCore/test/strict/basics_function_in_SM.js
  3371. [0.027767] Passed -> /home/gonzo/Github/ChakraCore/test/strict/basics_function_in_SM.js
  3372. [0.025906] Passed -> /home/gonzo/Github/ChakraCore/test/strict/callerOrArgsNoAccess.js
  3373. [0.013745] Passed -> /home/gonzo/Github/ChakraCore/test/strict/stricteval-deferred.js
  3374. [0.013434] Passed -> /home/gonzo/Github/ChakraCore/test/strict/stricteval2-deferred.js
  3375. [0.015047] Passed -> /home/gonzo/Github/ChakraCore/test/strict/stricteval3-deferred.js
  3376. [0.013193] Passed -> /home/gonzo/Github/ChakraCore/test/strict/strictargs-deferred.js
  3377. [0.019946] Passed -> /home/gonzo/Github/ChakraCore/test/strict/strictargs2-deferred.js
  3378. [0.013429] Passed -> /home/gonzo/Github/ChakraCore/test/strict/strictargs3-deferred.js
  3379. [0.019113] Passed -> /home/gonzo/Github/ChakraCore/test/strict/evalargs.js
  3380. [0.018482] Passed -> /home/gonzo/Github/ChakraCore/test/strict/evalargs.js
  3381. [0.034285] Passed -> /home/gonzo/Github/ChakraCore/test/strict/evalThis.js
  3382. [0.015831] Passed -> /home/gonzo/Github/ChakraCore/test/strict/evalThis2.js
  3383. [0.016519] Passed -> /home/gonzo/Github/ChakraCore/test/strict/evalThisNested.js
  3384. [0.013133] Passed -> /home/gonzo/Github/ChakraCore/test/strict/formal_samename1.js
  3385. [0.012832] Passed -> /home/gonzo/Github/ChakraCore/test/strict/formal_samename1.js
  3386. [0.015373] Passed -> /home/gonzo/Github/ChakraCore/test/strict/formal_samename2.js
  3387. [0.013465] Passed -> /home/gonzo/Github/ChakraCore/test/strict/formal_samename2.js
  3388. [0.013537] Passed -> /home/gonzo/Github/ChakraCore/test/strict/multiunit.js
  3389. [0.013437] Passed -> /home/gonzo/Github/ChakraCore/test/strict/delete.js
  3390. [0.012844] Passed -> /home/gonzo/Github/ChakraCore/test/strict/delete.js
  3391. [0.016396] Passed -> /home/gonzo/Github/ChakraCore/test/strict/01.octal.js
  3392. [0.01863] Passed -> /home/gonzo/Github/ChakraCore/test/strict/01.octal.js
  3393. [0.019607] Passed -> /home/gonzo/Github/ChakraCore/test/strict/01.octal_sm.js
  3394. [0.050655] Passed -> /home/gonzo/Github/ChakraCore/test/strict/03.assign.js
  3395. [0.087381] Passed -> /home/gonzo/Github/ChakraCore/test/strict/03.assign.js
  3396. [0.087733] Passed -> /home/gonzo/Github/ChakraCore/test/strict/03.assign.js
  3397. [0.086161] Passed -> /home/gonzo/Github/ChakraCore/test/strict/03.assign_sm.js
  3398. [0.116557] Passed -> /home/gonzo/Github/ChakraCore/test/strict/03.assign_sm.js
  3399. [0.017955] Passed -> /home/gonzo/Github/ChakraCore/test/strict/04.eval.js
  3400. [0.01871] Passed -> /home/gonzo/Github/ChakraCore/test/strict/04.eval.js
  3401. [0.016239] Passed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments.js
  3402. [0.022222] Passed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments.js
  3403. [0.122986] Failed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments.js
  3404. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized -ForceStrictMode /home/gonzo/Github/ChakraCore/test/strict/05.arguments.js
  3405. Output:
  3406. ----------------------------
  3407. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  3408. ----------------------------
  3409. exit code: -11
  3410. [0.025232] Passed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments.js
  3411. [0.04456] Passed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments_sm.js
  3412. [0.131249] Failed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments_sm.js
  3413. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized /home/gonzo/Github/ChakraCore/test/strict/05.arguments_sm.js
  3414. Output:
  3415. ----------------------------
  3416. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  3417. ----------------------------
  3418. exit code: -11
  3419. [0.040846] Passed -> /home/gonzo/Github/ChakraCore/test/strict/05.arguments_sm.js
  3420. [0.031518] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments.js
  3421. [0.023776] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments.js
  3422. [0.019386] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments.js
  3423. [0.050678] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments.js
  3424. [0.038015] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments_sm.js
  3425. [0.058113] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments_sm.js
  3426. [0.040895] Passed -> /home/gonzo/Github/ChakraCore/test/strict/06.arguments_sm.js
  3427. [0.033862] Passed -> /home/gonzo/Github/ChakraCore/test/strict/07.arguments.js
  3428. [0.032677] Passed -> /home/gonzo/Github/ChakraCore/test/strict/07.arguments_sm.js
  3429. [0.014659] Passed -> /home/gonzo/Github/ChakraCore/test/strict/08.ObjectLiteral.js
  3430. [0.013759] Passed -> /home/gonzo/Github/ChakraCore/test/strict/08.ObjectLiteral.js
  3431. [0.01403] Passed -> /home/gonzo/Github/ChakraCore/test/strict/08.ObjectLiteral_sm.js
  3432. [0.017083] Passed -> /home/gonzo/Github/ChakraCore/test/strict/09.ObjectLiteral.js
  3433. [0.01756] Passed -> /home/gonzo/Github/ChakraCore/test/strict/09.ObjectLiteral.js
  3434. [0.017501] Passed -> /home/gonzo/Github/ChakraCore/test/strict/09.ObjectLiteral_sm.js
  3435. [0.020954] Passed -> /home/gonzo/Github/ChakraCore/test/strict/10.eval.js
  3436. [0.022065] Passed -> /home/gonzo/Github/ChakraCore/test/strict/10.eval_sm.js
  3437. [0.033126] Passed -> /home/gonzo/Github/ChakraCore/test/strict/11.this.js
  3438. [0.032035] Passed -> /home/gonzo/Github/ChakraCore/test/strict/11.this.js
  3439. [0.03587] Passed -> /home/gonzo/Github/ChakraCore/test/strict/11.this_sm.js
  3440. [0.033377] Passed -> /home/gonzo/Github/ChakraCore/test/strict/11.this_sm.js
  3441. [0.021822] Passed -> /home/gonzo/Github/ChakraCore/test/strict/12.delete.js
  3442. [0.026446] Passed -> /home/gonzo/Github/ChakraCore/test/strict/12.delete.js
  3443. [0.025758] Passed -> /home/gonzo/Github/ChakraCore/test/strict/12.delete_sm.js
  3444. [0.018298] Passed -> /home/gonzo/Github/ChakraCore/test/strict/13.delete.js
  3445. [0.019951] Passed -> /home/gonzo/Github/ChakraCore/test/strict/14.var.js
  3446. [0.018913] Passed -> /home/gonzo/Github/ChakraCore/test/strict/14.var.js
  3447. [0.022654] Passed -> /home/gonzo/Github/ChakraCore/test/strict/14.var_sm.js
  3448. [0.019713] Passed -> /home/gonzo/Github/ChakraCore/test/strict/15.with.js
  3449. [0.025747] Passed -> /home/gonzo/Github/ChakraCore/test/strict/15.with.js
  3450. [0.025004] Passed -> /home/gonzo/Github/ChakraCore/test/strict/15.with_sm.js
  3451. [0.024232] Passed -> /home/gonzo/Github/ChakraCore/test/strict/16.catch.js
  3452. [0.029298] Passed -> /home/gonzo/Github/ChakraCore/test/strict/16.catch.js
  3453. [0.028931] Passed -> /home/gonzo/Github/ChakraCore/test/strict/16.catch_sm.js
  3454. [0.025207] Passed -> /home/gonzo/Github/ChakraCore/test/strict/17.formal.js
  3455. [0.027923] Passed -> /home/gonzo/Github/ChakraCore/test/strict/17.formal_sm.js
  3456. [0.028558] Passed -> /home/gonzo/Github/ChakraCore/test/strict/17.formal_sm.js
  3457. [0.021367] Passed -> /home/gonzo/Github/ChakraCore/test/strict/18.formal.js
  3458. [0.025062] Passed -> /home/gonzo/Github/ChakraCore/test/strict/18.formal.js
  3459. [0.025939] Passed -> /home/gonzo/Github/ChakraCore/test/strict/18.formal_sm.js
  3460. [0.040896] Passed -> /home/gonzo/Github/ChakraCore/test/strict/19.function.js
  3461. [0.053733] Passed -> /home/gonzo/Github/ChakraCore/test/strict/19.function_sm.js
  3462. [0.018523] Passed -> /home/gonzo/Github/ChakraCore/test/strict/20.function.js
  3463. [0.017339] Passed -> /home/gonzo/Github/ChakraCore/test/strict/20.function.js
  3464. [0.017719] Passed -> /home/gonzo/Github/ChakraCore/test/strict/20.function_sm.js
  3465. [29.06674] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/WOOB1138949.js
  3466. [0.035716] Passed -> /home/gonzo/Github/ChakraCore/test/strict/21.functionDeclaration.js
  3467. [0.016468] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/propertyString.js
  3468. [0.036786] Passed -> /home/gonzo/Github/ChakraCore/test/strict/21.functionDeclaration.js
  3469. [0.044905] Passed -> /home/gonzo/Github/ChakraCore/test/strict/21.functionDeclaration_sm.js
  3470. [0.118747] Failed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/propertyString.js
  3471. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized /home/gonzo/Github/ChakraCore/test/UnifiedRegex/propertyString.js
  3472. Output:
  3473. ----------------------------
  3474. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  3475. ----------------------------
  3476. exit code: -11
  3477. [0.014161] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/bugFixVersioned.js
  3478. [0.142195] Passed -> /home/gonzo/Github/ChakraCore/test/strict/22.callerCalleeArguments.js
  3479. [0.249895] Passed -> /home/gonzo/Github/ChakraCore/test/strict/22.callerCalleeArguments_sm.js
  3480. [0.436034] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/mru.js
  3481. [0.050231] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/SourceToString.js
  3482. [0.026411] Passed -> /home/gonzo/Github/ChakraCore/test/UnifiedRegex/scanner.js
  3483. [0.047686] Passed -> /home/gonzo/Github/ChakraCore/test/UnitTestFramework/UTFTests.js
  3484. WARNING: /home/gonzo/Github/ChakraCore/test/VT_DATE/getVarDate.js should be getvardate.js
  3485. [0.448118] Failed -> /home/gonzo/Github/ChakraCore/test/VT_DATE/getvardate.js
  3486. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/VT_DATE/getvardate.js
  3487. Output: (at line 1)
  3488. ----------------------------
  3489. test concat: Wed Dec 31 1969 23:00:00 GMT+0100 (CEST)
  3490. ----------------------------
  3491. Expected Output:
  3492. ----------------------------
  3493. test concat: Wed Dec 31 1969 16:00:00 GMT-0800 (Pacific Standard Time)
  3494. ----------------------------
  3495. exit code: 0
  3496. [0.037785] Passed -> /home/gonzo/Github/ChakraCore/test/es5/reservedWords.js
  3497. WARNING: /home/gonzo/Github/ChakraCore/test/es5/Lex_U3.js should be Lex_u3.js
  3498. WARNING: /home/gonzo/Github/ChakraCore/test/es5/Lex_U3.baseline should be Lex_u3.baseline
  3499. [0.021963] Failed -> /home/gonzo/Github/ChakraCore/test/es5/Lex_u3.js
  3500. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Unicode- /home/gonzo/Github/ChakraCore/test/es5/Lex_u3.js
  3501. Output: (at line 7)
  3502. ----------------------------
  3503. BOM is WS in unicode 3 - compile failure in ES5: not expected.SyntaxError: Invalid character
  3504. ----------------------------
  3505. Expected Output:
  3506. ----------------------------
  3507. BOM is WS : 91
  3508. ----------------------------
  3509. exit code: 0
  3510. [0.022557] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_every.js
  3511. [0.019715] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_some.js
  3512. [0.025461] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_forEach.js
  3513. [0.027977] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_map.js
  3514. [0.025864] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_filter.js
  3515. [0.026733] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_reduce.js
  3516. WARNING: /home/gonzo/Github/ChakraCore/test/es5/array_reduceRight.js should be array_reduceright.js
  3517. WARNING: /home/gonzo/Github/ChakraCore/test/es5/array_reduceRight.baseline should be array_reduceright.baseline
  3518. [0.043307] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_reduceright.js
  3519. [1.00041] Passed -> /home/gonzo/Github/ChakraCore/test/strict/23.reservedWords.js
  3520. [0.037294] Failed -> /home/gonzo/Github/ChakraCore/test/es5/DateGetSet9.js
  3521. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/es5/DateGetSet9.js
  3522. Output: (at line 9)
  3523. ----------------------------
  3524. getYear 2000: 99
  3525. ----------------------------
  3526. Expected Output:
  3527. ----------------------------
  3528. getYear 2000: 100
  3529. ----------------------------
  3530. exit code: 0
  3531. [0.1563] Failed -> /home/gonzo/Github/ChakraCore/test/strict/23.reservedWords_sm.js
  3532. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/strict/23.reservedWords_sm.js
  3533. Output:
  3534. ----------------------------
  3535. (function(){var break;})();
  3536. ----------------------------
  3537. exit code: -11
  3538. [0.014533] Passed -> /home/gonzo/Github/ChakraCore/test/strict/24.properties.js
  3539. [0.015799] Passed -> /home/gonzo/Github/ChakraCore/test/strict/24.properties.js
  3540. [0.016262] Passed -> /home/gonzo/Github/ChakraCore/test/strict/24.properties_sm.js
  3541. [0.020991] Passed -> /home/gonzo/Github/ChakraCore/test/strict/strictkwd.js
  3542. [0.019838] Passed -> /home/gonzo/Github/ChakraCore/test/strict/strictkwd.js
  3543. [0.013992] Passed -> /home/gonzo/Github/ChakraCore/test/strict/strictkwd-deferred.js
  3544. [0.01568] Passed -> /home/gonzo/Github/ChakraCore/test/strict/comma_bug219390.js
  3545. [0.020783] Passed -> /home/gonzo/Github/ChakraCore/test/strict/comma_bug219390.js
  3546. [0.016695] Passed -> /home/gonzo/Github/ChakraCore/test/strict/nestedfnnameargs.js
  3547. [0.026818] Passed -> /home/gonzo/Github/ChakraCore/test/strict/nestedfnnameargs.js
  3548. [0.037333] Passed -> /home/gonzo/Github/ChakraCore/test/strict/bug212755.js
  3549. [0.017771] Passed -> /home/gonzo/Github/ChakraCore/test/strict/bug212755.js
  3550. [11.323364] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unicode_whitespace.js
  3551. [0.013426] Passed -> /home/gonzo/Github/ChakraCore/test/strict/OS_1362136.js
  3552. [0.013468] Passed -> /home/gonzo/Github/ChakraCore/test/strict/nonSimpleParameterList.js
  3553. [0.023705] Failed -> /home/gonzo/Github/ChakraCore/test/es6/bug_OS_2553885.js
  3554. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/es6/bug_OS_2553885.js
  3555. Output:
  3556. ----------------------------
  3557. 54491
  3558. PASS
  3559. ----------------------------
  3560. exit code: 0
  3561. [0.016957] Passed -> /home/gonzo/Github/ChakraCore/test/es6/bug_OS_2915477.js
  3562. WARNING: /home/gonzo/Github/ChakraCore/test/es6/bug_OS3198161.js should be bug_os3198161.js
  3563. [0.015058] Passed -> /home/gonzo/Github/ChakraCore/test/es6/bug_os3198161.js
  3564. [0.014511] Passed -> /home/gonzo/Github/ChakraCore/test/es6/bug_OS_4498031.js
  3565. [0.058319] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6NewTarget.js
  3566. [0.143886] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/allIIntCases.js
  3567. [0.026225] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6NewTarget_bugfixes.js
  3568. [0.030033] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/emptyCases.js
  3569. [0.039238] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/moreSwitches1.js
  3570. [0.048672] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6NewTarget_bugfixes.js
  3571. [0.049529] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6NewTarget_bugfixes.js
  3572. [0.137537] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/moreSwitches2.js
  3573. [1.114906] Failed -> /home/gonzo/Github/ChakraCore/test/es5/jx2.js
  3574. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/es5/jx2.js
  3575. Output: (at line 132)
  3576. ----------------------------
  3577. "/test ze\u0000ro\u000bString\n_u4:a_u2:¼_u1:\u000e_u2clean:Â
  3578. ----------------------------
  3579. Expected Output:
  3580. ----------------------------
  3581. "/test ze\u0000ro\u000bString\n_u4:a_u2:¼_u1:\u000e_u2clean:�"
  3582. ----------------------------
  3583. exit code: 0
  3584. [0.02473] Passed -> /home/gonzo/Github/ChakraCore/test/es5/SemicolonAfterBlockEs5.js
  3585. [0.052979] Passed -> /home/gonzo/Github/ChakraCore/test/es5/exceptions.js
  3586. [0.063626] Passed -> /home/gonzo/Github/ChakraCore/test/es5/ObjLitGetSet.js
  3587. [0.051714] Passed -> /home/gonzo/Github/ChakraCore/test/es5/ObjLitGetSetParseOnly.js
  3588. [0.583972] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Class_SuperChain.js
  3589. [0.044083] Passed -> /home/gonzo/Github/ChakraCore/test/es5/ObjLitGetSetParseOnly.js
  3590. [0.016112] Passed -> /home/gonzo/Github/ChakraCore/test/es6/globalLambdaNewTargetSyntaxError.js
  3591. [0.020855] Passed -> /home/gonzo/Github/ChakraCore/test/es5/ObjLitInitFld.js
  3592. [0.043405] Passed -> /home/gonzo/Github/ChakraCore/test/es6/globalNewTargetSyntaxError.js
  3593. [0.026271] Passed -> /home/gonzo/Github/ChakraCore/test/es5/seal.js
  3594. [0.025726] Passed -> /home/gonzo/Github/ChakraCore/test/es6/globalCatchNewTargetSyntaxError.js
  3595. [0.032432] Passed -> /home/gonzo/Github/ChakraCore/test/es5/freeze.js
  3596. [0.0257] Passed -> /home/gonzo/Github/ChakraCore/test/es6/globalParamCatchNewTargetSyntaxError.js
  3597. [0.038556] Passed -> /home/gonzo/Github/ChakraCore/test/es5/extensible.js
  3598. [0.043385] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Class_BaseClassConstruction.js
  3599. WARNING: /home/gonzo/Github/ChakraCore/test/es6/Expo.js should be expo.js
  3600. [0.722358] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/switchMathExp.js
  3601. [0.040067] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/allStringCases.js
  3602. [0.089835] Passed -> /home/gonzo/Github/ChakraCore/test/es6/expo.js
  3603. [0.023989] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/stringAndNonStrings.js
  3604. [0.015351] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/repeatIntCases.js
  3605. [0.036945] Passed -> /home/gonzo/Github/ChakraCore/test/es6/trailingcomma.js
  3606. WARNING: /home/gonzo/Github/ChakraCore/test/es6/ES6HasInstance.js should be es6HasInstance.js
  3607. [0.018922] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/emptyStringCases.js
  3608. [0.01312] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/repeatStringCases.js
  3609. WARNING: /home/gonzo/Github/ChakraCore/test/es6/ES6HasInstance.baseline should be es6HasInstance.baseline
  3610. [0.031032] Passed -> /home/gonzo/Github/ChakraCore/test/es6/es6HasInstance.js
  3611. [0.209056] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_length.js
  3612. [0.025041] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/loopAndRetarget.js
  3613. [0.013707] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/implicitCallSwitchExpr.js
  3614. [0.015724] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/simpleSwitch.js
  3615. [0.016832] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/BugFixRegression_MaxInterpret.js
  3616. [0.03276] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/amd64JScriptNumberRegression.js
  3617. [0.022858] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/substring.js
  3618. [0.027158] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/stringDictionaryBailOnNoProfileBug.js
  3619. [0.036756] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/jmpTableTest1.js
  3620. [0.034494] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/minMaxCaseValues.js
  3621. [0.270986] Passed -> /home/gonzo/Github/ChakraCore/test/es5/array_length.js
  3622. [0.019569] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/jmpTableTest2.js
  3623. [0.03334] Passed -> /home/gonzo/Github/ChakraCore/test/es5/createdp.js
  3624. [0.02697] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/duplicateStringCaseArmBug.js
  3625. [0.012797] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/CallBetweenSwitchExprUses.js
  3626. [0.014038] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/switchDefNotStringBug.js
  3627. [0.013008] Passed -> /home/gonzo/Github/ChakraCore/test/switchStatement/singleCharStringCase.js
  3628. WARNING: /home/gonzo/Github/ChakraCore/test/typedarray/arrayBuffer.js should be arraybuffer.js
  3629. WARNING: /home/gonzo/Github/ChakraCore/test/typedarray/arraybuffer.baseline should be arrayBuffer.baseline
  3630. [0.020791] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/arraybuffer.js
  3631. WARNING: /home/gonzo/Github/ChakraCore/test/typedarray/arrayBufferType_v5.js should be arraybufferType_v5.js
  3632. [0.036547] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/arraybufferType_v5.js
  3633. WARNING: /home/gonzo/Github/ChakraCore/test/typedarray/arrayBufferType.js should be arraybufferType.js
  3634. [0.166278] Passed -> /home/gonzo/Github/ChakraCore/test/es5/defineProperty.js
  3635. [0.022431] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/arraybufferType.js
  3636. [0.574221] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6RestrictedProperties.js
  3637. [0.069619] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/TypedArrayBuiltins.js
  3638. [0.019231] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/BadNaN.js
  3639. [0.065596] Passed -> /home/gonzo/Github/ChakraCore/test/es6/ES6Proto.js
  3640. [0.149533] Failed -> /home/gonzo/Github/ChakraCore/test/es5/defineProperty.js
  3641. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized /home/gonzo/Github/ChakraCore/test/es5/defineProperty.js
  3642. Output:
  3643. ----------------------------
  3644. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  3645. ----------------------------
  3646. exit code: -11
  3647. [0.026872] Passed -> /home/gonzo/Github/ChakraCore/test/es6/object_literal_bug.js
  3648. [0.013031] Passed -> /home/gonzo/Github/ChakraCore/test/es6/OS_5403724.js
  3649. [0.18527] Passed -> /home/gonzo/Github/ChakraCore/test/es6/forloops-per-iteration-bindings.js
  3650. [0.042092] Passed -> /home/gonzo/Github/ChakraCore/test/es6/HTMLComments.js
  3651. [0.339346] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/int8array.js
  3652. [0.016889] Failed -> /home/gonzo/Github/ChakraCore/test/es6/await-futreserved-only-in-modules.js
  3653. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ES6Module /home/gonzo/Github/ChakraCore/test/es6/await-futreserved-only-in-modules.js
  3654. Output:
  3655. ----------------------------
  3656. fail
  3657. ----------------------------
  3658. exit code: 0
  3659. [0.024652] Passed -> /home/gonzo/Github/ChakraCore/test/es6/OS_5500719.js
  3660. [0.345121] Failed -> /home/gonzo/Github/ChakraCore/test/es7/asyncawait-syntax.js
  3661. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -es6experimental -nodeferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es7/asyncawait-syntax.js
  3662. Output:
  3663. ----------------------------
  3664. ----------------------------
  3665. exit code: -11
  3666. [0.404262] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/uint8array.js
  3667. [0.80743] Passed -> /home/gonzo/Github/ChakraCore/test/es5/defineIndexProperty.js
  3668. [0.236976] Failed -> /home/gonzo/Github/ChakraCore/test/es7/asyncawait-syntax.js
  3669. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -es6experimental -forcedeferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es7/asyncawait-syntax.js
  3670. Output:
  3671. ----------------------------
  3672. ----------------------------
  3673. exit code: -11
  3674. [0.188671] Failed -> /home/gonzo/Github/ChakraCore/test/es5/defineIndexProperty.js
  3675. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -Serialized /home/gonzo/Github/ChakraCore/test/es5/defineIndexProperty.js
  3676. Output:
  3677. ----------------------------
  3678. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  3679. ----------------------------
  3680. exit code: -11
  3681. [0.311435] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/int16array.js
  3682. [0.203155] Failed -> /home/gonzo/Github/ChakraCore/test/es7/asyncawait-functionality.js
  3683. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -es6experimental -nodeferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es7/asyncawait-functionality.js
  3684. Output:
  3685. ----------------------------
  3686. Executing test #1 - Async keyword with a lambda expressions
  3687. ----------------------------
  3688. exit code: -11
  3689. [0.199213] Passed -> /home/gonzo/Github/ChakraCore/test/es5/enumerable.js
  3690. [0.124987] Failed -> /home/gonzo/Github/ChakraCore/test/es7/asyncawait-functionality.js
  3691. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -es6experimental -forcedeferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es7/asyncawait-functionality.js
  3692. Output:
  3693. ----------------------------
  3694. Executing test #1 - Async keyword with a lambda expressions
  3695. ----------------------------
  3696. exit code: -11
  3697. [0.03277] Passed -> /home/gonzo/Github/ChakraCore/test/es7/stringpad.js
  3698. [0.305696] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/uint16array.js
  3699. [0.050679] Passed -> /home/gonzo/Github/ChakraCore/test/es7/asyncawait-apis.js
  3700. [0.16528] Passed -> /home/gonzo/Github/ChakraCore/test/es5/hasItem.js
  3701. [0.068297] Passed -> /home/gonzo/Github/ChakraCore/test/es7/valuesAndEntries.js
  3702. [0.043747] Passed -> /home/gonzo/Github/ChakraCore/test/es7/misc_bugs.js
  3703. [0.044249] Passed -> /home/gonzo/Github/ChakraCore/test/es7/misc_bugs.js
  3704. [0.051321] Passed -> /home/gonzo/Github/ChakraCore/test/es7/immutable-prototype.js
  3705. [0.294858] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/int32array.js
  3706. [0.055086] Passed -> /home/gonzo/Github/ChakraCore/test/es7/lookupgettersetter.js
  3707. [0.027582] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/equiv-finaltypeandpoly.js
  3708. [0.317259] Passed -> /home/gonzo/Github/ChakraCore/test/es5/regexSpace.js
  3709. [0.032244] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/equiv-missing.js
  3710. [0.029812] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/equiv-mismatch.js
  3711. [0.036564] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/equiv-locktypeid.js
  3712. [0.023843] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/equiv-needmonocheck.js
  3713. [0.149182] Passed -> /home/gonzo/Github/ChakraCore/test/es5/EnumeratingWithES5.js
  3714. [0.016499] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/equiv-needsmonocheck2.js
  3715. [0.259931] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/uint32array.js
  3716. [0.015275] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldconstprop_ldmethodfld.js
  3717. [0.013055] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_assign.js
  3718. [0.050342] Passed -> /home/gonzo/Github/ChakraCore/test/es5/InsufficientArguments.js
  3719. [0.017937] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_delete.js
  3720. [0.015428] Passed -> /home/gonzo/Github/ChakraCore/test/es5/recursivesetter.js
  3721. [0.014597] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_deletestrict.js
  3722. [0.023649] Passed -> /home/gonzo/Github/ChakraCore/test/es5/valueof.js
  3723. [0.013291] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist2.js
  3724. [0.022927] Passed -> /home/gonzo/Github/ChakraCore/test/es5/tostring_override.js
  3725. [0.019029] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist4.js
  3726. [0.013984] Passed -> /home/gonzo/Github/ChakraCore/test/es5/valueof_override.js
  3727. [0.024159] Passed -> /home/gonzo/Github/ChakraCore/test/es5/tostring_override.js
  3728. [0.015212] Passed -> /home/gonzo/Github/ChakraCore/test/es5/valueof_override.js
  3729. [0.061385] Passed -> /home/gonzo/Github/ChakraCore/test/es5/TypeConversions.js
  3730. [0.26543] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/float32array.js
  3731. [0.038724] Passed -> /home/gonzo/Github/ChakraCore/test/es5/RegExpStrictDelete.js
  3732. [0.017284] Passed -> /home/gonzo/Github/ChakraCore/test/es5/settersArguments.js
  3733. [0.01756] Passed -> /home/gonzo/Github/ChakraCore/test/es5/settersArguments.js
  3734. [0.265804] Failed -> /home/gonzo/Github/ChakraCore/test/typedarray/float64array.js
  3735. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/typedarray/float64array.js
  3736. Output:
  3737. ----------------------------
  3738. test1
  3739. 10
  3740. constructor is
  3741. function Float64Array() { [native code] }
  3742. byteLength = undefined
  3743. object is
  3744. 0,-0.65,0,0,0,10,0,0,0
  3745. 0 == 0
  3746. 1 == -0.65
  3747. 2 == 0
  3748. 3 == 0
  3749. 4 == 0
  3750. 5 == 10
  3751. 6 == 0
  3752. 7 == 0
  3753. 8 == 0
  3754. byteLength = 72
  3755. object after expando is
  3756. 0,-0.65,0,0,0,10,0,0,0
  3757. 0 == 0
  3758. 1 == -0.65
  3759. 2 == 0
  3760. 3 == 0
  3761. 4 == 0
  3762. 5 == 10
  3763. 6 == 0
  3764. 7 == 0
  3765. 8 == 0
  3766. foo == bar
  3767. byteLength = 72
  3768. test2
  3769. undefined
  3770. constructor is
  3771. function Float64Array() { [native code] }
  3772. byteLength = undefined
  3773. object is
  3774. byteLength = 0
  3775. object after expando is
  3776. foo == bar
  3777. byteLength = 0
  3778. test3
  3779. undefined
  3780. constructor is
  3781. function Float64Array() { [native code] }
  3782. byteLength = undefined
  3783. object is
  3784. 0,-0.65,0,0
  3785. 0 == 0
  3786. 1 == -0.65
  3787. 2 == 0
  3788. 3 == 0
  3789. byteLength = 32
  3790. object after expando is
  3791. 0,-0.65,0,0
  3792. 0 == 0
  3793. 1 == -0.65
  3794. 2 == 0
  3795. 3 == 0
  3796. foo == bar
  3797. byteLength = 32
  3798. test4
  3799. undefined
  3800. constructor is
  3801. function Float64Array() { [native code] }
  3802. byteLength = undefined
  3803. object is
  3804. -0.65,-0.65,0
  3805. 0 == -0.65
  3806. 1 == -0.65
  3807. 2 == 0
  3808. byteLength = 24
  3809. object after expando is
  3810. -0.65,-0.65,0
  3811. 0 == -0.65
  3812. 1 == -0.65
  3813. 2 == 0
  3814. foo == bar
  3815. byteLength = 24
  3816. test5
  3817. undefined
  3818. constructor is
  3819. function Float64Array() { [native code] }
  3820. byteLength = undefined
  3821. object is
  3822. -0.65,-0.65,0
  3823. 0 == -0.65
  3824. 1 == -0.65
  3825. 2 == 0
  3826. byteLength = 24
  3827. object after expando is
  3828. -0.65,-0.65,0
  3829. 0 == -0.65
  3830. 1 == -0.65
  3831. 2 == 0
  3832. foo == bar
  3833. byteLength = 24
  3834. test6
  3835. [object ArrayBuffer]
  3836. 10
  3837. constructor is
  3838. function Float64Array() { [native code] }
  3839. byteLength = undefined
  3840. object is
  3841. 0,-0.65,0,0,0,10,0,0,0
  3842. 0 == 0
  3843. 1 == -0.65
  3844. 2 == 0
  3845. 3 == 0
  3846. 4 == 0
  3847. 5 == 10
  3848. 6 == 0
  3849. 7 == 0
  3850. 8 == 0
  3851. byteLength = 72
  3852. object after expando is
  3853. 0,-0.65,0,0,0,10,0,0,0
  3854. 0 == 0
  3855. 1 == -0.65
  3856. 2 == 0
  3857. 3 == 0
  3858. 4 == 0
  3859. 5 == 10
  3860. 6 == 0
  3861. 7 == 0
  3862. 8 == 0
  3863. foo == bar
  3864. byteLength = 72
  3865. test7
  3866. 10
  3867. constructor is
  3868. function Float64Array() { [native code] }
  3869. byteLength = undefined
  3870. object is
  3871. -0.65,-0.65,0,0,10,10,0,0
  3872. 0 == -0.65
  3873. 1 == -0.65
  3874. 2 == 0
  3875. 3 == 0
  3876. 4 == 10
  3877. 5 == 10
  3878. 6 == 0
  3879. 7 == 0
  3880. byteLength = 64
  3881. object after expando is
  3882. -0.65,-0.65,0,0,10,10,0,0
  3883. 0 == -0.65
  3884. 1 == -0.65
  3885. 2 == 0
  3886. 3 == 0
  3887. 4 == 10
  3888. 5 == 10
  3889. 6 == 0
  3890. 7 == 0
  3891. foo == bar
  3892. byteLength = 64
  3893. test8
  3894. undefined
  3895. constructor is
  3896. function Float64Array() { [native code] }
  3897. byteLength = undefined
  3898. object is
  3899. -0.65,-0.65
  3900. 0 == -0.65
  3901. 1 == -0.65
  3902. byteLength = 16
  3903. object after expando is
  3904. -0.65,-0.65
  3905. 0 == -0.65
  3906. 1 == -0.65
  3907. foo == bar
  3908. byteLength = 16
  3909. test9
  3910. 10
  3911. constructor is
  3912. function Float64Array() { [native code] }
  3913. byteLength = undefined
  3914. object is
  3915. 1,-0.65,3,4,5,10,7,8,9,10,11,12
  3916. 0 == 1
  3917. 1 == -0.65
  3918. 2 == 3
  3919. 3 == 4
  3920. 4 == 5
  3921. 5 == 10
  3922. 6 == 7
  3923. 7 == 8
  3924. 8 == 9
  3925. 9 == 10
  3926. 10 == 11
  3927. 11 == 12
  3928. byteLength = 96
  3929. object after expando is
  3930. 1,-0.65,3,4,5,10,7,8,9,10,11,12
  3931. 0 == 1
  3932. 1 == -0.65
  3933. 2 == 3
  3934. 3 == 4
  3935. 4 == 5
  3936. 5 == 10
  3937. 6 == 7
  3938. 7 == 8
  3939. 8 == 9
  3940. 9 == 10
  3941. 10 == 11
  3942. 11 == 12
  3943. foo == bar
  3944. byteLength = 96
  3945. test9.1
  3946. 0,-0.65,-0.65,0,0,10,10,0,0
  3947. 0 == 0
  3948. 1 == -0.65
  3949. 2 == -0.65
  3950. 3 == 0
  3951. 4 == 0
  3952. 5 == 10
  3953. 6 == 10
  3954. 7 == 0
  3955. 8 == 0
  3956. foo == bar
  3957. byteLength = 72
  3958. 10
  3959. constructor is
  3960. function Float64Array() { [native code] }
  3961. byteLength = undefined
  3962. object is
  3963. 0,-0.65,-0.65,0,0,10,10,0,0,10,11,12
  3964. 0 == 0
  3965. 1 == -0.65
  3966. 2 == -0.65
  3967. 3 == 0
  3968. 4 == 0
  3969. 5 == 10
  3970. 6 == 10
  3971. 7 == 0
  3972. 8 == 0
  3973. 9 == 10
  3974. 10 == 11
  3975. 11 == 12
  3976. foo == bar
  3977. byteLength = 96
  3978. object after expando is
  3979. 0,-0.65,-0.65,0,0,10,10,0,0,10,11,12
  3980. 0 == 0
  3981. 1 == -0.65
  3982. 2 == -0.65
  3983. 3 == 0
  3984. 4 == 0
  3985. 5 == 10
  3986. 6 == 10
  3987. 7 == 0
  3988. 8 == 0
  3989. 9 == 10
  3990. 10 == 11
  3991. 11 == 12
  3992. foo == bar
  3993. byteLength = 96
  3994. test9.2
  3995. 10
  3996. constructor is
  3997. function Float64Array() { [native code] }
  3998. byteLength = undefined
  3999. object is
  4000. -0.65,-0.65,0,0,0,10,10,0,0,10,11,12
  4001. 0 == -0.65
  4002. 1 == -0.65
  4003. 2 == 0
  4004. 3 == 0
  4005. 4 == 0
  4006. 5 == 10
  4007. 6 == 10
  4008. 7 == 0
  4009. 8 == 0
  4010. 9 == 10
  4011. 10 == 11
  4012. 11 == 12
  4013. foo == bar
  4014. byteLength = 96
  4015. object after expando is
  4016. -0.65,-0.65,0,0,0,10,10,0,0,10,11,12
  4017. 0 == -0.65
  4018. 1 == -0.65
  4019. 2 == 0
  4020. 3 == 0
  4021. 4 == 0
  4022. 5 == 10
  4023. 6 == 10
  4024. 7 == 0
  4025. 8 == 0
  4026. 9 == 10
  4027. 10 == 11
  4028. 11 == 12
  4029. foo == bar
  4030. byteLength = 96
  4031. test10
  4032. succeed with catchingTypeError: Typed array constructor argument is invalid
  4033. test11
  4034. succeed with catchingTypeError: Typed array constructor argument is invalid
  4035. test11.1
  4036. 10
  4037. constructor is
  4038. function Float64Array() { [native code] }
  4039. byteLength = undefined
  4040. object is
  4041. NaN,-0.65,NaN,NaN,NaN,10,NaN
  4042. 0 == NaN
  4043. 1 == -0.65
  4044. 2 == NaN
  4045. 3 == NaN
  4046. 4 == NaN
  4047. 5 == 10
  4048. 6 == NaN
  4049. byteLength = 56
  4050. object after expando is
  4051. NaN,-0.65,NaN,NaN,NaN,10,NaN
  4052. 0 == NaN
  4053. 1 == -0.65
  4054. 2 == NaN
  4055. 3 == NaN
  4056. 4 == NaN
  4057. 5 == 10
  4058. 6 == NaN
  4059. foo == bar
  4060. byteLength = 56
  4061. test12
  4062. undefined
  4063. constructor is
  4064. function Float64Array() { [native code] }
  4065. byteLength = undefined
  4066. object is
  4067. byteLength = 0
  4068. object after expando is
  4069. foo == bar
  4070. byteLength = 0
  4071. test13
  4072. undefined
  4073. constructor is
  4074. function Float64Array() { [native code] }
  4075. byteLength = undefined
  4076. object is
  4077. 0,-0.65,-0.65,0
  4078. 0 == 0
  4079. 1 == -0.65
  4080. 2 == -0.65
  4081. 3 == 0
  4082. byteLength = 32
  4083. object after expando is
  4084. 0,-0.65,-0.65,0
  4085. 0 == 0
  4086. 1 == -0.65
  4087. 2 == -0.65
  4088. 3 == 0
  4089. foo == bar
  4090. byteLength = 32
  4091. test14
  4092. undefined
  4093. constructor is
  4094. function Float64Array() { [native code] }
  4095. byteLength = undefined
  4096. object is
  4097. byteLength = 0
  4098. object after expando is
  4099. foo == bar
  4100. byteLength = 0
  4101. test15
  4102. succeed with catchingRangeError: Invalid offset/length when creating typed array
  4103. test16
  4104. succeed with catchingRangeError: Invalid offset/length when creating typed array
  4105. -0.65,-0.65,0
  4106. 0 == -0.65
  4107. 1 == -0.65
  4108. 2 == 0
  4109. foo == bar
  4110. byteLength = 24
  4111. test17
  4112. -0.65,-0.65,0
  4113. 0 == -0.65
  4114. 1 == -0.65
  4115. 2 == 0
  4116. byteLength = 24
  4117. test18
  4118. byteLength = 0
  4119. test19
  4120. -0.65,-0.65,0
  4121. 0 == -0.65
  4122. 1 == -0.65
  4123. 2 == 0
  4124. byteLength = 24
  4125. test20
  4126. -0.65,-0.65,0
  4127. 0 == -0.65
  4128. 1 == -0.65
  4129. 2 == 0
  4130. byteLength = 24
  4131. test21
  4132. ----------------------------
  4133. exit code: -11
  4134. WARNING: /home/gonzo/Github/ChakraCore/test/typedarray/DataView.js should be dataview.js
  4135. [0.84443] Passed -> /home/gonzo/Github/ChakraCore/test/es5/augmentPrimitive.js
  4136. [0.078053] Passed -> /home/gonzo/Github/ChakraCore/test/es5/setget.js
  4137. [0.022295] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_objproto.js
  4138. [0.020224] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_arrayproto.js
  4139. [0.041125] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_arrayproto_crosssite.js
  4140. [0.021784] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_protoarr.js
  4141. [0.022409] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_protoobj.js
  4142. [0.039061] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_protoobj_crosssite.js
  4143. [0.015091] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_replaceprotoarr.js
  4144. [0.016264] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_replaceprotoobj.js
  4145. [0.0152] Passed -> /home/gonzo/Github/ChakraCore/test/es5/resetproperty.js
  4146. [0.019029] Passed -> /home/gonzo/Github/ChakraCore/test/es5/es5array_enum_edit.js
  4147. [0.284551] Passed -> /home/gonzo/Github/ChakraCore/test/es6/lambda1.js
  4148. [0.235312] Failed -> /home/gonzo/Github/ChakraCore/test/es6/lambda1.js
  4149. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -force:deferparse -args summary -endargs /home/gonzo/Github/ChakraCore/test/es6/lambda1.js
  4150. Output:
  4151. ----------------------------
  4152. ----------------------------
  4153. exit code: -11
  4154. [0.131371] Passed -> /home/gonzo/Github/ChakraCore/test/es6/NumericLiteralTest.js
  4155. [0.050759] Passed -> /home/gonzo/Github/ChakraCore/test/es6/boundBug3837520.js
  4156. [0.063909] Passed -> /home/gonzo/Github/ChakraCore/test/es6/es6toLength.js
  4157. [0.019708] Passed -> /home/gonzo/Github/ChakraCore/test/es6/toPrimitiveCrossScriptTestCase.js
  4158. [0.044835] Passed -> /home/gonzo/Github/ChakraCore/test/es6/computedPropertyToString.js
  4159. [0.016819] Passed -> /home/gonzo/Github/ChakraCore/test/es6/computedPropertySideEffect.js
  4160. [0.021098] Passed -> /home/gonzo/Github/ChakraCore/test/es6/BugFix2214646.js
  4161. [0.052762] Passed -> /home/gonzo/Github/ChakraCore/test/es6/es6IsConcatSpreadable.js
  4162. [0.049421] Passed -> /home/gonzo/Github/ChakraCore/test/es6/toPrimitive.js
  4163. [0.078066] Passed -> /home/gonzo/Github/ChakraCore/test/es6/unscopablesWithScopeTest.js
  4164. [0.108514] Passed -> /home/gonzo/Github/ChakraCore/test/es6/function.name.js
  4165. [0.065614] Passed -> /home/gonzo/Github/ChakraCore/test/es6/superDotOSBug3930962.js
  4166. [0.303025] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proto_basic.js
  4167. [0.61107] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proto_disable.js
  4168. [0.347935] Failed -> /home/gonzo/Github/ChakraCore/test/es6/proto_initializer.js
  4169. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/es6/proto_initializer.js
  4170. Output:
  4171. ----------------------------
  4172. *** Running test #1 (0): init to an object
  4173. PASSED
  4174. *** Running test #2 (1): init to null
  4175. PASSED
  4176. *** Running test #3 (2): init to neither object nor null
  4177. PASSED
  4178. *** Running test #4 (3): init to accessor
  4179. PASSED
  4180. *** Running test #5 (4): verify no incorrectly shared type
  4181. PASSED
  4182. *** Running test #6 (5): verify not accidentally enables it for function parameters
  4183. ----------------------------
  4184. exit code: -11
  4185. [0.261344] Failed -> /home/gonzo/Github/ChakraCore/test/es6/proto_initializer.js
  4186. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -ForceSerialized /home/gonzo/Github/ChakraCore/test/es6/proto_initializer.js
  4187. Output:
  4188. ----------------------------
  4189. *** Running test #1 (0): init to an object
  4190. PASSED
  4191. *** Running test #2 (1): init to null
  4192. PASSED
  4193. *** Running test #3 (2): init to neither object nor null
  4194. PASSED
  4195. *** Running test #4 (3): init to accessor
  4196. PASSED
  4197. *** Running test #5 (4): verify no incorrectly shared type
  4198. PASSED
  4199. *** Running test #6 (5): verify not accidentally enables it for function parameters
  4200. ----------------------------
  4201. exit code: -11
  4202. [0.022102] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proto_addprop.js
  4203. [0.022922] Passed -> /home/gonzo/Github/ChakraCore/test/es6/proto_addprop.js
  4204. [0.044725] Passed -> /home/gonzo/Github/ChakraCore/test/es6/map_basic.js
  4205. [0.219744] Passed -> /home/gonzo/Github/ChakraCore/test/es6/map_functionality.js
  4206. [0.051367] Passed -> /home/gonzo/Github/ChakraCore/test/es6/set_basic.js
  4207. [0.177804] Passed -> /home/gonzo/Github/ChakraCore/test/es6/set_functionality.js
  4208. [0.043571] Passed -> /home/gonzo/Github/ChakraCore/test/es6/weakmap_basic.js
  4209. [0.168336] Passed -> /home/gonzo/Github/ChakraCore/test/es6/weakmap_functionality.js
  4210. [10.129148] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist5.js
  4211. [0.014851] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist6.js
  4212. [0.014951] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist6b.js
  4213. [0.015047] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist7.js
  4214. [0.013216] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist8.js
  4215. [0.014997] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_nullfieldhoist.js
  4216. [0.012952] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist9.js
  4217. [0.021933] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_unreachable.js
  4218. [0.017038] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_typespec.js
  4219. [0.016164] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_typespec.js
  4220. [0.016611] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_typespec.js
  4221. [0.012697] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_typespec2.js
  4222. [0.013588] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_typespec3.js
  4223. [0.014925] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_undefined_global.js
  4224. [0.015115] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_negzero.js
  4225. [0.112596] Failed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_negzero.js
  4226. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- -force:fieldhoist -Serialized /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_negzero.js
  4227. Output:
  4228. ----------------------------
  4229. ERROR: ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize) failed. JsErrorCode=0x40001 (JsErrorFatal)
  4230. ----------------------------
  4231. exit code: -11
  4232. [0.018988] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_typeof.js
  4233. WARNING: /home/gonzo/Github/ChakraCore/test/typedarray/DataView.baseline should be dataview.baseline
  4234. [0.039941] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_sideeffect.js
  4235. [10.117271] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/dataview.js
  4236. [0.0202] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_nonwritable.js
  4237. [0.015016] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_primitive.js
  4238. [0.012609] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_preventextensions.js
  4239. [0.016576] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_freeze.js
  4240. [0.013764] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/redundanttype1.js
  4241. [0.013507] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_join.js
  4242. [0.013083] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_slots.js
  4243. [0.013354] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_slots2.js
  4244. [0.012777] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_objptrcopyprop.js
  4245. [0.012851] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_objptrcopyprop2.js
  4246. [0.013382] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_kills.js
  4247. [0.016585] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_stripbailouts.js
  4248. [0.012461] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/redundanttype2.js
  4249. WARNING: /home/gonzo/Github/ChakraCore/test/fieldopts/checkthis.js should be CheckThis.js
  4250. WARNING: /home/gonzo/Github/ChakraCore/test/fieldopts/checkthis.baseline should be CheckThis.baseline
  4251. [0.017375] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/CheckThis.js
  4252. [0.012642] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objptrcopyprop_bug.js
  4253. [0.01523] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objptrcopyprop_typescript.js
  4254. [0.012878] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldcopyprop_typespec.js
  4255. [0.012861] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_deletefld.js
  4256. [0.023734] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/forcefixdataprops.js
  4257. [0.028578] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/PropObjectPointerCopyProp.js
  4258. [0.01903] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/redundanttype_kills.js
  4259. [0.016455] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_copypropdep.js
  4260. [0.014664] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/fieldhoist_number.js
  4261. [0.0231] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec1.js
  4262. [0.028619] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec2.js
  4263. [0.024172] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec3.js
  4264. [0.025538] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-fieldhoist.js
  4265. [0.015472] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-fieldhoist.2.js
  4266. [0.020526] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec_proto.js
  4267. [0.653967] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/objectproperty.js
  4268. [0.035344] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-add.js
  4269. [0.01642] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-add-2.js
  4270. [0.019553] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-add-4.js
  4271. [0.036067] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  4272. [0.120491] Failed -> /home/gonzo/Github/ChakraCore/test/typedarray/nan.js
  4273. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/typedarray/nan.js
  4274. Output: (at line 42)
  4275. ----------------------------
  4276. 2 == 192
  4277. ----------------------------
  4278. Expected Output:
  4279. ----------------------------
  4280. 2 == 240
  4281. ----------------------------
  4282. exit code: 0
  4283. [0.036985] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  4284. [0.023976] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/negIndexes.js
  4285. [0.039052] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  4286. [0.036088] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  4287. [0.039126] Passed -> /home/gonzo/Github/ChakraCore/test/fieldopts/objtypespec-newobj.1.js
  4288. [2.230881] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/set.js
  4289. [0.934429] Failed -> /home/gonzo/Github/ChakraCore/test/typedarray/samethread.js
  4290. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/typedarray/samethread.js
  4291. Output:
  4292. ----------------------------
  4293. testing file dataview.js
  4294. test one value 0
  4295. set little endian value offset 0 value 0 method setInt8
  4296. results of little endian reads are:
  4297. getInt8 = 0
  4298. getUint8 = 0
  4299. getInt16 = 0
  4300. getUint16 = 0
  4301. getInt32 = 0
  4302. getUint32 = 0
  4303. getFloat32 = 0
  4304. getFloat64 = 0
  4305. results of big endian reads are:
  4306. getInt8 = 0
  4307. getUint8 = 0
  4308. getInt16 = 0
  4309. getUint16 = 0
  4310. getInt32 = 0
  4311. getUint32 = 0
  4312. getFloat32 = 0
  4313. getFloat64 = 0
  4314. set little endian value offset 0 value 0 method setInt8
  4315. results of little endian reads are:
  4316. getInt8 = 0
  4317. getUint8 = 0
  4318. getInt16 = 0
  4319. getUint16 = 0
  4320. getInt32 = 0
  4321. getUint32 = 0
  4322. getFloat32 = 0
  4323. getFloat64 = 0
  4324. results of big endian reads are:
  4325. getInt8 = 0
  4326. getUint8 = 0
  4327. getInt16 = 0
  4328. getUint16 = 0
  4329. getInt32 = 0
  4330. getUint32 = 0
  4331. getFloat32 = 0
  4332. getFloat64 = 0
  4333. set little endian value offset 0 value 0 method setUint8
  4334. results of little endian reads are:
  4335. getInt8 = 0
  4336. getUint8 = 0
  4337. getInt16 = 0
  4338. getUint16 = 0
  4339. getInt32 = 0
  4340. getUint32 = 0
  4341. getFloat32 = 0
  4342. getFloat64 = 0
  4343. results of big endian reads are:
  4344. getInt8 = 0
  4345. getUint8 = 0
  4346. getInt16 = 0
  4347. getUint16 = 0
  4348. getInt32 = 0
  4349. getUint32 = 0
  4350. getFloat32 = 0
  4351. getFloat64 = 0
  4352. set little endian value offset 0 value 0 method setUint8
  4353. results of little endian reads are:
  4354. getInt8 = 0
  4355. getUint8 = 0
  4356. getInt16 = 0
  4357. getUint16 = 0
  4358. getInt32 = 0
  4359. getUint32 = 0
  4360. getFloat32 = 0
  4361. getFloat64 = 0
  4362. results of big endian reads are:
  4363. getInt8 = 0
  4364. getUint8 = 0
  4365. getInt16 = 0
  4366. getUint16 = 0
  4367. getInt32 = 0
  4368. getUint32 = 0
  4369. getFloat32 = 0
  4370. getFloat64 = 0
  4371. set little endian value offset 0 value 0 method setInt16
  4372. results of little endian reads are:
  4373. getInt8 = 0
  4374. getUint8 = 0
  4375. getInt16 = 0
  4376. getUint16 = 0
  4377. getInt32 = 0
  4378. getUint32 = 0
  4379. getFloat32 = 0
  4380. getFloat64 = 0
  4381. results of big endian reads are:
  4382. getInt8 = 0
  4383. getUint8 = 0
  4384. getInt16 = 0
  4385. getUint16 = 0
  4386. getInt32 = 0
  4387. getUint32 = 0
  4388. getFloat32 = 0
  4389. getFloat64 = 0
  4390. set little endian value offset 0 value 0 method setInt16
  4391. results of little endian reads are:
  4392. getInt8 = 0
  4393. getUint8 = 0
  4394. getInt16 = 0
  4395. getUint16 = 0
  4396. getInt32 = 0
  4397. getUint32 = 0
  4398. getFloat32 = 0
  4399. getFloat64 = 0
  4400. results of big endian reads are:
  4401. getInt8 = 0
  4402. getUint8 = 0
  4403. getInt16 = 0
  4404. getUint16 = 0
  4405. getInt32 = 0
  4406. getUint32 = 0
  4407. getFloat32 = 0
  4408. getFloat64 = 0
  4409. set little endian value offset 0 value 0 method setUint16
  4410. results of little endian reads are:
  4411. getInt8 = 0
  4412. getUint8 = 0
  4413. getInt16 = 0
  4414. getUint16 = 0
  4415. getInt32 = 0
  4416. getUint32 = 0
  4417. getFloat32 = 0
  4418. getFloat64 = 0
  4419. results of big endian reads are:
  4420. getInt8 = 0
  4421. getUint8 = 0
  4422. getInt16 = 0
  4423. getUint16 = 0
  4424. getInt32 = 0
  4425. getUint32 = 0
  4426. getFloat32 = 0
  4427. getFloat64 = 0
  4428. set little endian value offset 0 value 0 method setUint16
  4429. results of little endian reads are:
  4430. getInt8 = 0
  4431. getUint8 = 0
  4432. getInt16 = 0
  4433. getUint16 = 0
  4434. getInt32 = 0
  4435. getUint32 = 0
  4436. getFloat32 = 0
  4437. getFloat64 = 0
  4438. results of big endian reads are:
  4439. getInt8 = 0
  4440. getUint8 = 0
  4441. getInt16 = 0
  4442. getUint16 = 0
  4443. getInt32 = 0
  4444. getUint32 = 0
  4445. getFloat32 = 0
  4446. getFloat64 = 0
  4447. set little endian value offset 0 value 0 method setInt32
  4448. results of little endian reads are:
  4449. getInt8 = 0
  4450. getUint8 = 0
  4451. getInt16 = 0
  4452. getUint16 = 0
  4453. getInt32 = 0
  4454. getUint32 = 0
  4455. getFloat32 = 0
  4456. getFloat64 = 0
  4457. results of big endian reads are:
  4458. getInt8 = 0
  4459. getUint8 = 0
  4460. getInt16 = 0
  4461. getUint16 = 0
  4462. getInt32 = 0
  4463. getUint32 = 0
  4464. getFloat32 = 0
  4465. getFloat64 = 0
  4466. set little endian value offset 0 value 0 method setInt32
  4467. results of little endian reads are:
  4468. getInt8 = 0
  4469. getUint8 = 0
  4470. getInt16 = 0
  4471. getUint16 = 0
  4472. getInt32 = 0
  4473. getUint32 = 0
  4474. getFloat32 = 0
  4475. getFloat64 = 0
  4476. results of big endian reads are:
  4477. getInt8 = 0
  4478. getUint8 = 0
  4479. getInt16 = 0
  4480. getUint16 = 0
  4481. getInt32 = 0
  4482. getUint32 = 0
  4483. getFloat32 = 0
  4484. getFloat64 = 0
  4485. set little endian value offset 0 value 0 method setUint32
  4486. results of little endian reads are:
  4487. getInt8 = 0
  4488. getUint8 = 0
  4489. getInt16 = 0
  4490. getUint16 = 0
  4491. getInt32 = 0
  4492. getUint32 = 0
  4493. getFloat32 = 0
  4494. getFloat64 = 0
  4495. results of big endian reads are:
  4496. getInt8 = 0
  4497. getUint8 = 0
  4498. getInt16 = 0
  4499. getUint16 = 0
  4500. getInt32 = 0
  4501. getUint32 = 0
  4502. getFloat32 = 0
  4503. getFloat64 = 0
  4504. set little endian value offset 0 value 0 method setUint32
  4505. results of little endian reads are:
  4506. getInt8 = 0
  4507. getUint8 = 0
  4508. getInt16 = 0
  4509. getUint16 = 0
  4510. getInt32 = 0
  4511. getUint32 = 0
  4512. getFloat32 = 0
  4513. getFloat64 = 0
  4514. results of big endian reads are:
  4515. getInt8 = 0
  4516. getUint8 = 0
  4517. getInt16 = 0
  4518. getUint16 = 0
  4519. getInt32 = 0
  4520. getUint32 = 0
  4521. getFloat32 = 0
  4522. getFloat64 = 0
  4523. set little endian value offset 0 value 0 method setFloat32
  4524. results of little endian reads are:
  4525. getInt8 = 0
  4526. getUint8 = 0
  4527. getInt16 = 0
  4528. getUint16 = 0
  4529. getInt32 = 0
  4530. getUint32 = 0
  4531. getFloat32 = 0
  4532. getFloat64 = 0
  4533. results of big endian reads are:
  4534. getInt8 = 0
  4535. getUint8 = 0
  4536. getInt16 = 0
  4537. getUint16 = 0
  4538. getInt32 = 0
  4539. getUint32 = 0
  4540. getFloat32 = 0
  4541. getFloat64 = 0
  4542. set little endian value offset 0 value 0 method setFloat32
  4543. results of little endian reads are:
  4544. getInt8 = 0
  4545. getUint8 = 0
  4546. getInt16 = 0
  4547. getUint16 = 0
  4548. getInt32 = 0
  4549. getUint32 = 0
  4550. getFloat32 = 0
  4551. getFloat64 = 0
  4552. results of big endian reads are:
  4553. getInt8 = 0
  4554. getUint8 = 0
  4555. getInt16 = 0
  4556. getUint16 = 0
  4557. getInt32 = 0
  4558. getUint32 = 0
  4559. getFloat32 = 0
  4560. getFloat64 = 0
  4561. set little endian value offset 0 value 0 method setFloat64
  4562. results of little endian reads are:
  4563. getInt8 = 0
  4564. getUint8 = 0
  4565. getInt16 = 0
  4566. getUint16 = 0
  4567. getInt32 = 0
  4568. getUint32 = 0
  4569. getFloat32 = 0
  4570. getFloat64 = 0
  4571. results of big endian reads are:
  4572. getInt8 = 0
  4573. getUint8 = 0
  4574. getInt16 = 0
  4575. getUint16 = 0
  4576. getInt32 = 0
  4577. getUint32 = 0
  4578. getFloat32 = 0
  4579. getFloat64 = 0
  4580. set little endian value offset 0 value 0 method setFloat64
  4581. results of little endian reads are:
  4582. getInt8 = 0
  4583. getUint8 = 0
  4584. getInt16 = 0
  4585. getUint16 = 0
  4586. getInt32 = 0
  4587. getUint32 = 0
  4588. getFloat32 = 0
  4589. getFloat64 = 0
  4590. results of big endian reads are:
  4591. getInt8 = 0
  4592. getUint8 = 0
  4593. getInt16 = 0
  4594. getUint16 = 0
  4595. getInt32 = 0
  4596. getUint32 = 0
  4597. getFloat32 = 0
  4598. getFloat64 = 0
  4599. set little endian value offset 1 value 0 method setInt8
  4600. results of little endian reads are:
  4601. getInt8 = 0
  4602. getUint8 = 0
  4603. getInt16 = 0
  4604. getUint16 = 0
  4605. getInt32 = 0
  4606. getUint32 = 0
  4607. getFloat32 = 0
  4608. getFloat64 = 0
  4609. results of big endian reads are:
  4610. getInt8 = 0
  4611. getUint8 = 0
  4612. getInt16 = 0
  4613. getUint16 = 0
  4614. getInt32 = 0
  4615. getUint32 = 0
  4616. getFloat32 = 0
  4617. getFloat64 = 0
  4618. set little endian value offset 1 value 0 method setInt8
  4619. results of little endian reads are:
  4620. getInt8 = 0
  4621. getUint8 = 0
  4622. getInt16 = 0
  4623. getUint16 = 0
  4624. getInt32 = 0
  4625. getUint32 = 0
  4626. getFloat32 = 0
  4627. getFloat64 = 0
  4628. results of big endian reads are:
  4629. getInt8 = 0
  4630. getUint8 = 0
  4631. getInt16 = 0
  4632. getUint16 = 0
  4633. getInt32 = 0
  4634. getUint32 = 0
  4635. getFloat32 = 0
  4636. getFloat64 = 0
  4637. set little endian value offset 1 value 0 method setUint8
  4638. results of little endian reads are:
  4639. getInt8 = 0
  4640. getUint8 = 0
  4641. getInt16 = 0
  4642. getUint16 = 0
  4643. getInt32 = 0
  4644. getUint32 = 0
  4645. getFloat32 = 0
  4646. getFloat64 = 0
  4647. results of big endian reads are:
  4648. getInt8 = 0
  4649. getUint8 = 0
  4650. getInt16 = 0
  4651. getUint16 = 0
  4652. getInt32 = 0
  4653. getUint32 = 0
  4654. getFloat32 = 0
  4655. getFloat64 = 0
  4656. set little endian value offset 1 value 0 method setUint8
  4657. results of little endian reads are:
  4658. getInt8 = 0
  4659. getUint8 = 0
  4660. getInt16 = 0
  4661. getUint16 = 0
  4662. getInt32 = 0
  4663. getUint32 = 0
  4664. getFloat32 = 0
  4665. getFloat64 = 0
  4666. results of big endian reads are:
  4667. getInt8 = 0
  4668. getUint8 = 0
  4669. getInt16 = 0
  4670. getUint16 = 0
  4671. getInt32 = 0
  4672. getUint32 = 0
  4673. getFloat32 = 0
  4674. getFloat64 = 0
  4675. set little endian value offset 1 value 0 method setInt16
  4676. results of little endian reads are:
  4677. getInt8 = 0
  4678. getUint8 = 0
  4679. getInt16 = 0
  4680. getUint16 = 0
  4681. getInt32 = 0
  4682. getUint32 = 0
  4683. getFloat32 = 0
  4684. getFloat64 = 0
  4685. results of big endian reads are:
  4686. getInt8 = 0
  4687. getUint8 = 0
  4688. getInt16 = 0
  4689. getUint16 = 0
  4690. getInt32 = 0
  4691. getUint32 = 0
  4692. getFloat32 = 0
  4693. getFloat64 = 0
  4694. set little endian value offset 1 value 0 method setInt16
  4695. results of little endian reads are:
  4696. getInt8 = 0
  4697. getUint8 = 0
  4698. getInt16 = 0
  4699. getUint16 = 0
  4700. getInt32 = 0
  4701. getUint32 = 0
  4702. getFloat32 = 0
  4703. getFloat64 = 0
  4704. results of big endian reads are:
  4705. getInt8 = 0
  4706. getUint8 = 0
  4707. getInt16 = 0
  4708. getUint16 = 0
  4709. getInt32 = 0
  4710. getUint32 = 0
  4711. getFloat32 = 0
  4712. getFloat64 = 0
  4713. set little endian value offset 1 value 0 method setUint16
  4714. results of little endian reads are:
  4715. getInt8 = 0
  4716. getUint8 = 0
  4717. getInt16 = 0
  4718. getUint16 = 0
  4719. getInt32 = 0
  4720. getUint32 = 0
  4721. getFloat32 = 0
  4722. getFloat64 = 0
  4723. results of big endian reads are:
  4724. getInt8 = 0
  4725. getUint8 = 0
  4726. getInt16 = 0
  4727. getUint16 = 0
  4728. getInt32 = 0
  4729. getUint32 = 0
  4730. getFloat32 = 0
  4731. getFloat64 = 0
  4732. set little endian value offset 1 value 0 method setUint16
  4733. results of little endian reads are:
  4734. getInt8 = 0
  4735. getUint8 = 0
  4736. getInt16 = 0
  4737. getUint16 = 0
  4738. getInt32 = 0
  4739. getUint32 = 0
  4740. getFloat32 = 0
  4741. getFloat64 = 0
  4742. results of big endian reads are:
  4743. getInt8 = 0
  4744. getUint8 = 0
  4745. getInt16 = 0
  4746. getUint16 = 0
  4747. getInt32 = 0
  4748. getUint32 = 0
  4749. getFloat32 = 0
  4750. getFloat64 = 0
  4751. set little endian value offset 1 value 0 method setInt32
  4752. results of little endian reads are:
  4753. getInt8 = 0
  4754. getUint8 = 0
  4755. getInt16 = 0
  4756. getUint16 = 0
  4757. getInt32 = 0
  4758. getUint32 = 0
  4759. getFloat32 = 0
  4760. getFloat64 = 0
  4761. results of big endian reads are:
  4762. getInt8 = 0
  4763. getUint8 = 0
  4764. getInt16 = 0
  4765. getUint16 = 0
  4766. getInt32 = 0
  4767. getUint32 = 0
  4768. getFloat32 = 0
  4769. getFloat64 = 0
  4770. set little endian value offset 1 value 0 method setInt32
  4771. results of little endian reads are:
  4772. getInt8 = 0
  4773. getUint8 = 0
  4774. getInt16 = 0
  4775. getUint16 = 0
  4776. getInt32 = 0
  4777. getUint32 = 0
  4778. getFloat32 = 0
  4779. getFloat64 = 0
  4780. results of big endian reads are:
  4781. getInt8 = 0
  4782. getUint8 = 0
  4783. getInt16 = 0
  4784. getUint16 = 0
  4785. getInt32 = 0
  4786. getUint32 = 0
  4787. getFloat32 = 0
  4788. getFloat64 = 0
  4789. set little endian value offset 1 value 0 method setUint32
  4790. results of little endian reads are:
  4791. getInt8 = 0
  4792. getUint8 = 0
  4793. getInt16 = 0
  4794. getUint16 = 0
  4795. getInt32 = 0
  4796. getUint32 = 0
  4797. getFloat32 = 0
  4798. getFloat64 = 0
  4799. results of big endian reads are:
  4800. getInt8 = 0
  4801. getUint8 = 0
  4802. getInt16 = 0
  4803. getUint16 = 0
  4804. getInt32 = 0
  4805. getUint32 = 0
  4806. getFloat32 = 0
  4807. getFloat64 = 0
  4808. set little endian value offset 1 value 0 method setUint32
  4809. results of little endian reads are:
  4810. getInt8 = 0
  4811. getUint8 = 0
  4812. getInt16 = 0
  4813. getUint16 = 0
  4814. getInt32 = 0
  4815. getUint32 = 0
  4816. getFloat32 = 0
  4817. getFloat64 = 0
  4818. results of big endian reads are:
  4819. getInt8 = 0
  4820. getUint8 = 0
  4821. getInt16 = 0
  4822. getUint16 = 0
  4823. getInt32 = 0
  4824. getUint32 = 0
  4825. getFloat32 = 0
  4826. getFloat64 = 0
  4827. set little endian value offset 1 value 0 method setFloat32
  4828. results of little endian reads are:
  4829. getInt8 = 0
  4830. getUint8 = 0
  4831. getInt16 = 0
  4832. getUint16 = 0
  4833. getInt32 = 0
  4834. getUint32 = 0
  4835. getFloat32 = 0
  4836. getFloat64 = 0
  4837. results of big endian reads are:
  4838. getInt8 = 0
  4839. getUint8 = 0
  4840. getInt16 = 0
  4841. getUint16 = 0
  4842. getInt32 = 0
  4843. getUint32 = 0
  4844. getFloat32 = 0
  4845. getFloat64 = 0
  4846. set little endian value offset 1 value 0 method setFloat32
  4847. results of little endian reads are:
  4848. getInt8 = 0
  4849. getUint8 = 0
  4850. getInt16 = 0
  4851. getUint16 = 0
  4852. getInt32 = 0
  4853. getUint32 = 0
  4854. getFloat32 = 0
  4855. getFloat64 = 0
  4856. results of big endian reads are:
  4857. getInt8 = 0
  4858. getUint8 = 0
  4859. getInt16 = 0
  4860. getUint16 = 0
  4861. getInt32 = 0
  4862. getUint32 = 0
  4863. getFloat32 = 0
  4864. getFloat64 = 0
  4865. set little endian value offset 1 value 0 method setFloat64
  4866. results of little endian reads are:
  4867. getInt8 = 0
  4868. getUint8 = 0
  4869. getInt16 = 0
  4870. getUint16 = 0
  4871. getInt32 = 0
  4872. getUint32 = 0
  4873. getFloat32 = 0
  4874. getFloat64 = 0
  4875. results of big endian reads are:
  4876. getInt8 = 0
  4877. getUint8 = 0
  4878. getInt16 = 0
  4879. getUint16 = 0
  4880. getInt32 = 0
  4881. getUint32 = 0
  4882. getFloat32 = 0
  4883. getFloat64 = 0
  4884. set little endian value offset 1 value 0 method setFloat64
  4885. results of little endian reads are:
  4886. getInt8 = 0
  4887. getUint8 = 0
  4888. getInt16 = 0
  4889. getUint16 = 0
  4890. getInt32 = 0
  4891. getUint32 = 0
  4892. getFloat32 = 0
  4893. getFloat64 = 0
  4894. results of big endian reads are:
  4895. getInt8 = 0
  4896. getUint8 = 0
  4897. getInt16 = 0
  4898. getUint16 = 0
  4899. getInt32 = 0
  4900. getUint32 = 0
  4901. getFloat32 = 0
  4902. getFloat64 = 0
  4903. set little endian value offset 2 value 0 method setInt8
  4904. results of little endian reads are:
  4905. getInt8 = 0
  4906. getUint8 = 0
  4907. getInt16 = 0
  4908. getUint16 = 0
  4909. getInt32 = 0
  4910. getUint32 = 0
  4911. getFloat32 = 0
  4912. getFloat64 = 0
  4913. results of big endian reads are:
  4914. getInt8 = 0
  4915. getUint8 = 0
  4916. getInt16 = 0
  4917. getUint16 = 0
  4918. getInt32 = 0
  4919. getUint32 = 0
  4920. getFloat32 = 0
  4921. getFloat64 = 0
  4922. set little endian value offset 2 value 0 method setInt8
  4923. results of little endian reads are:
  4924. getInt8 = 0
  4925. getUint8 = 0
  4926. getInt16 = 0
  4927. getUint16 = 0
  4928. getInt32 = 0
  4929. getUint32 = 0
  4930. getFloat32 = 0
  4931. getFloat64 = 0
  4932. results of big endian reads are:
  4933. getInt8 = 0
  4934. getUint8 = 0
  4935. getInt16 = 0
  4936. getUint16 = 0
  4937. getInt32 = 0
  4938. getUint32 = 0
  4939. getFloat32 = 0
  4940. getFloat64 = 0
  4941. set little endian value offset 2 value 0 method setUint8
  4942. results of little endian reads are:
  4943. getInt8 = 0
  4944. getUint8 = 0
  4945. getInt16 = 0
  4946. getUint16 = 0
  4947. getInt32 = 0
  4948. getUint32 = 0
  4949. getFloat32 = 0
  4950. getFloat64 = 0
  4951. results of big endian reads are:
  4952. getInt8 = 0
  4953. getUint8 = 0
  4954. getInt16 = 0
  4955. getUint16 = 0
  4956. getInt32 = 0
  4957. getUint32 = 0
  4958. getFloat32 = 0
  4959. getFloat64 = 0
  4960. set little endian value offset 2 value 0 method setUint8
  4961. results of little endian reads are:
  4962. getInt8 = 0
  4963. getUint8 = 0
  4964. getInt16 = 0
  4965. getUint16 = 0
  4966. getInt32 = 0
  4967. getUint32 = 0
  4968. getFloat32 = 0
  4969. getFloat64 = 0
  4970. results of big endian reads are:
  4971. getInt8 = 0
  4972. getUint8 = 0
  4973. getInt16 = 0
  4974. getUint16 = 0
  4975. getInt32 = 0
  4976. getUint32 = 0
  4977. getFloat32 = 0
  4978. getFloat64 = 0
  4979. set little endian value offset 2 value 0 method setInt16
  4980. results of little endian reads are:
  4981. getInt8 = 0
  4982. getUint8 = 0
  4983. getInt16 = 0
  4984. getUint16 = 0
  4985. getInt32 = 0
  4986. getUint32 = 0
  4987. getFloat32 = 0
  4988. getFloat64 = 0
  4989. results of big endian reads are:
  4990. getInt8 = 0
  4991. getUint8 = 0
  4992. getInt16 = 0
  4993. getUint16 = 0
  4994. getInt32 = 0
  4995. getUint32 = 0
  4996. getFloat32 = 0
  4997. getFloat64 = 0
  4998. set little endian value offset 2 value 0 method setInt16
  4999. results of little endian reads are:
  5000. getInt8 = 0
  5001. getUint8 = 0
  5002. getInt16 = 0
  5003. getUint16 = 0
  5004. getInt32 = 0
  5005. getUint32 = 0
  5006. getFloat32 = 0
  5007. getFloat64 = 0
  5008. results of big endian reads are:
  5009. getInt8 = 0
  5010. getUint8 = 0
  5011. getInt16 = 0
  5012. getUint16 = 0
  5013. getInt32 = 0
  5014. getUint32 = 0
  5015. getFloat32 = 0
  5016. getFloat64 = 0
  5017. set little endian value offset 2 value 0 method setUint16
  5018. results of little endian reads are:
  5019. getInt8 = 0
  5020. getUint8 = 0
  5021. getInt16 = 0
  5022. getUint16 = 0
  5023. getInt32 = 0
  5024. getUint32 = 0
  5025. getFloat32 = 0
  5026. getFloat64 = 0
  5027. results of big endian reads are:
  5028. getInt8 = 0
  5029. getUint8 = 0
  5030. getInt16 = 0
  5031. getUint16 = 0
  5032. getInt32 = 0
  5033. getUint32 = 0
  5034. getFloat32 = 0
  5035. getFloat64 = 0
  5036. set little endian value offset 2 value 0 method setUint16
  5037. results of little endian reads are:
  5038. getInt8 = 0
  5039. getUint8 = 0
  5040. getInt16 = 0
  5041. getUint16 = 0
  5042. getInt32 = 0
  5043. getUint32 = 0
  5044. getFloat32 = 0
  5045. getFloat64 = 0
  5046. results of big endian reads are:
  5047. getInt8 = 0
  5048. getUint8 = 0
  5049. getInt16 = 0
  5050. getUint16 = 0
  5051. getInt32 = 0
  5052. getUint32 = 0
  5053. getFloat32 = 0
  5054. getFloat64 = 0
  5055. set little endian value offset 2 value 0 method setInt32
  5056. results of little endian reads are:
  5057. getInt8 = 0
  5058. getUint8 = 0
  5059. getInt16 = 0
  5060. getUint16 = 0
  5061. getInt32 = 0
  5062. getUint32 = 0
  5063. getFloat32 = 0
  5064. getFloat64 = 0
  5065. results of big endian reads are:
  5066. getInt8 = 0
  5067. getUint8 = 0
  5068. getInt16 = 0
  5069. getUint16 = 0
  5070. getInt32 = 0
  5071. getUint32 = 0
  5072. getFloat32 = 0
  5073. getFloat64 = 0
  5074. set little endian value offset 2 value 0 method setInt32
  5075. results of little endian reads are:
  5076. getInt8 = 0
  5077. getUint8 = 0
  5078. getInt16 = 0
  5079. getUint16 = 0
  5080. getInt32 = 0
  5081. getUint32 = 0
  5082. getFloat32 = 0
  5083. getFloat64 = 0
  5084. results of big endian reads are:
  5085. getInt8 = 0
  5086. getUint8 = 0
  5087. getInt16 = 0
  5088. getUint16 = 0
  5089. getInt32 = 0
  5090. getUint32 = 0
  5091. getFloat32 = 0
  5092. getFloat64 = 0
  5093. set little endian value offset 2 value 0 method setUint32
  5094. results of little endian reads are:
  5095. getInt8 = 0
  5096. getUint8 = 0
  5097. getInt16 = 0
  5098. getUint16 = 0
  5099. getInt32 = 0
  5100. getUint32 = 0
  5101. getFloat32 = 0
  5102. getFloat64 = 0
  5103. results of big endian reads are:
  5104. getInt8 = 0
  5105. getUint8 = 0
  5106. getInt16 = 0
  5107. getUint16 = 0
  5108. getInt32 = 0
  5109. getUint32 = 0
  5110. getFloat32 = 0
  5111. getFloat64 = 0
  5112. set little endian value offset 2 value 0 method setUint32
  5113. results of little endian reads are:
  5114. getInt8 = 0
  5115. getUint8 = 0
  5116. getInt16 = 0
  5117. getUint16 = 0
  5118. getInt32 = 0
  5119. getUint32 = 0
  5120. getFloat32 = 0
  5121. getFloat64 = 0
  5122. results of big endian reads are:
  5123. getInt8 = 0
  5124. getUint8 = 0
  5125. getInt16 = 0
  5126. getUint16 = 0
  5127. getInt32 = 0
  5128. getUint32 = 0
  5129. getFloat32 = 0
  5130. getFloat64 = 0
  5131. set little endian value offset 2 value 0 method setFloat32
  5132. results of little endian reads are:
  5133. getInt8 = 0
  5134. getUint8 = 0
  5135. getInt16 = 0
  5136. getUint16 = 0
  5137. getInt32 = 0
  5138. getUint32 = 0
  5139. getFloat32 = 0
  5140. getFloat64 = 0
  5141. results of big endian reads are:
  5142. getInt8 = 0
  5143. getUint8 = 0
  5144. getInt16 = 0
  5145. getUint16 = 0
  5146. getInt32 = 0
  5147. getUint32 = 0
  5148. getFloat32 = 0
  5149. getFloat64 = 0
  5150. set little endian value offset 2 value 0 method setFloat32
  5151. results of little endian reads are:
  5152. getInt8 = 0
  5153. getUint8 = 0
  5154. getInt16 = 0
  5155. getUint16 = 0
  5156. getInt32 = 0
  5157. getUint32 = 0
  5158. getFloat32 = 0
  5159. getFloat64 = 0
  5160. results of big endian reads are:
  5161. getInt8 = 0
  5162. getUint8 = 0
  5163. getInt16 = 0
  5164. getUint16 = 0
  5165. getInt32 = 0
  5166. getUint32 = 0
  5167. getFloat32 = 0
  5168. getFloat64 = 0
  5169. set little endian value offset 2 value 0 method setFloat64
  5170. results of little endian reads are:
  5171. getInt8 = 0
  5172. getUint8 = 0
  5173. getInt16 = 0
  5174. getUint16 = 0
  5175. getInt32 = 0
  5176. getUint32 = 0
  5177. getFloat32 = 0
  5178. getFloat64 = 0
  5179. results of big endian reads are:
  5180. getInt8 = 0
  5181. getUint8 = 0
  5182. getInt16 = 0
  5183. getUint16 = 0
  5184. getInt32 = 0
  5185. getUint32 = 0
  5186. getFloat32 = 0
  5187. getFloat64 = 0
  5188. set little endian value offset 2 value 0 method setFloat64
  5189. results of little endian reads are:
  5190. getInt8 = 0
  5191. getUint8 = 0
  5192. getInt16 = 0
  5193. getUint16 = 0
  5194. getInt32 = 0
  5195. getUint32 = 0
  5196. getFloat32 = 0
  5197. getFloat64 = 0
  5198. results of big endian reads are:
  5199. getInt8 = 0
  5200. getUint8 = 0
  5201. getInt16 = 0
  5202. getUint16 = 0
  5203. getInt32 = 0
  5204. getUint32 = 0
  5205. getFloat32 = 0
  5206. getFloat64 = 0
  5207. set little endian value offset 3 value 0 method setInt8
  5208. results of little endian reads are:
  5209. getInt8 = 0
  5210. getUint8 = 0
  5211. getInt16 = 0
  5212. getUint16 = 0
  5213. getInt32 = 0
  5214. getUint32 = 0
  5215. getFloat32 = 0
  5216. getFloat64 = 0
  5217. results of big endian reads are:
  5218. getInt8 = 0
  5219. getUint8 = 0
  5220. getInt16 = 0
  5221. getUint16 = 0
  5222. getInt32 = 0
  5223. getUint32 = 0
  5224. getFloat32 = 0
  5225. getFloat64 = 0
  5226. set little endian value offset 3 value 0 method setInt8
  5227. results of little endian reads are:
  5228. getInt8 = 0
  5229. getUint8 = 0
  5230. getInt16 = 0
  5231. getUint16 = 0
  5232. getInt32 = 0
  5233. getUint32 = 0
  5234. getFloat32 = 0
  5235. getFloat64 = 0
  5236. results of big endian reads are:
  5237. getInt8 = 0
  5238. getUint8 = 0
  5239. getInt16 = 0
  5240. getUint16 = 0
  5241. getInt32 = 0
  5242. getUint32 = 0
  5243. getFloat32 = 0
  5244. getFloat64 = 0
  5245. set little endian value offset 3 value 0 method setUint8
  5246. results of little endian reads are:
  5247. getInt8 = 0
  5248. getUint8 = 0
  5249. getInt16 = 0
  5250. getUint16 = 0
  5251. getInt32 = 0
  5252. getUint32 = 0
  5253. getFloat32 = 0
  5254. getFloat64 = 0
  5255. results of big endian reads are:
  5256. getInt8 = 0
  5257. getUint8 = 0
  5258. getInt16 = 0
  5259. getUint16 = 0
  5260. getInt32 = 0
  5261. getUint32 = 0
  5262. getFloat32 = 0
  5263. getFloat64 = 0
  5264. set little endian value offset 3 value 0 method setUint8
  5265. results of little endian reads are:
  5266. getInt8 = 0
  5267. getUint8 = 0
  5268. getInt16 = 0
  5269. getUint16 = 0
  5270. getInt32 = 0
  5271. getUint32 = 0
  5272. getFloat32 = 0
  5273. getFloat64 = 0
  5274. results of big endian reads are:
  5275. getInt8 = 0
  5276. getUint8 = 0
  5277. getInt16 = 0
  5278. getUint16 = 0
  5279. getInt32 = 0
  5280. getUint32 = 0
  5281. getFloat32 = 0
  5282. getFloat64 = 0
  5283. set little endian value offset 3 value 0 method setInt16
  5284. results of little endian reads are:
  5285. getInt8 = 0
  5286. getUint8 = 0
  5287. getInt16 = 0
  5288. getUint16 = 0
  5289. getInt32 = 0
  5290. getUint32 = 0
  5291. getFloat32 = 0
  5292. getFloat64 = 0
  5293. results of big endian reads are:
  5294. getInt8 = 0
  5295. getUint8 = 0
  5296. getInt16 = 0
  5297. getUint16 = 0
  5298. getInt32 = 0
  5299. getUint32 = 0
  5300. getFloat32 = 0
  5301. getFloat64 = 0
  5302. set little endian value offset 3 value 0 method setInt16
  5303. results of little endian reads are:
  5304. getInt8 = 0
  5305. getUint8 = 0
  5306. getInt16 = 0
  5307. getUint16 = 0
  5308. getInt32 = 0
  5309. getUint32 = 0
  5310. getFloat32 = 0
  5311. getFloat64 = 0
  5312. results of big endian reads are:
  5313. getInt8 = 0
  5314. getUint8 = 0
  5315. getInt16 = 0
  5316. getUint16 = 0
  5317. getInt32 = 0
  5318. getUint32 = 0
  5319. getFloat32 = 0
  5320. getFloat64 = 0
  5321. set little endian value offset 3 value 0 method setUint16
  5322. results of little endian reads are:
  5323. getInt8 = 0
  5324. getUint8 = 0
  5325. getInt16 = 0
  5326. getUint16 = 0
  5327. getInt32 = 0
  5328. getUint32 = 0
  5329. getFloat32 = 0
  5330. getFloat64 = 0
  5331. results of big endian reads are:
  5332. getInt8 = 0
  5333. getUint8 = 0
  5334. getInt16 = 0
  5335. getUint16 = 0
  5336. getInt32 = 0
  5337. getUint32 = 0
  5338. getFloat32 = 0
  5339. getFloat64 = 0
  5340. set little endian value offset 3 value 0 method setUint16
  5341. results of little endian reads are:
  5342. getInt8 = 0
  5343. getUint8 = 0
  5344. getInt16 = 0
  5345. getUint16 = 0
  5346. getInt32 = 0
  5347. getUint32 = 0
  5348. getFloat32 = 0
  5349. getFloat64 = 0
  5350. results of big endian reads are:
  5351. getInt8 = 0
  5352. getUint8 = 0
  5353. getInt16 = 0
  5354. getUint16 = 0
  5355. getInt32 = 0
  5356. getUint32 = 0
  5357. getFloat32 = 0
  5358. getFloat64 = 0
  5359. set little endian value offset 3 value 0 method setInt32
  5360. results of little endian reads are:
  5361. getInt8 = 0
  5362. getUint8 = 0
  5363. getInt16 = 0
  5364. getUint16 = 0
  5365. getInt32 = 0
  5366. getUint32 = 0
  5367. getFloat32 = 0
  5368. getFloat64 = 0
  5369. results of big endian reads are:
  5370. getInt8 = 0
  5371. getUint8 = 0
  5372. getInt16 = 0
  5373. getUint16 = 0
  5374. getInt32 = 0
  5375. getUint32 = 0
  5376. getFloat32 = 0
  5377. getFloat64 = 0
  5378. set little endian value offset 3 value 0 method setInt32
  5379. results of little endian reads are:
  5380. getInt8 = 0
  5381. getUint8 = 0
  5382. getInt16 = 0
  5383. getUint16 = 0
  5384. getInt32 = 0
  5385. getUint32 = 0
  5386. getFloat32 = 0
  5387. getFloat64 = 0
  5388. results of big endian reads are:
  5389. getInt8 = 0
  5390. getUint8 = 0
  5391. getInt16 = 0
  5392. getUint16 = 0
  5393. getInt32 = 0
  5394. getUint32 = 0
  5395. getFloat32 = 0
  5396. getFloat64 = 0
  5397. set little endian value offset 3 value 0 method setUint32
  5398. results of little endian reads are:
  5399. getInt8 = 0
  5400. getUint8 = 0
  5401. getInt16 = 0
  5402. getUint16 = 0
  5403. getInt32 = 0
  5404. getUint32 = 0
  5405. getFloat32 = 0
  5406. getFloat64 = 0
  5407. results of big endian reads are:
  5408. getInt8 = 0
  5409. getUint8 = 0
  5410. getInt16 = 0
  5411. getUint16 = 0
  5412. getInt32 = 0
  5413. getUint32 = 0
  5414. getFloat32 = 0
  5415. getFloat64 = 0
  5416. set little endian value offset 3 value 0 method setUint32
  5417. results of little endian reads are:
  5418. getInt8 = 0
  5419. getUint8 = 0
  5420. getInt16 = 0
  5421. getUint16 = 0
  5422. getInt32 = 0
  5423. getUint32 = 0
  5424. getFloat32 = 0
  5425. getFloat64 = 0
  5426. results of big endian reads are:
  5427. getInt8 = 0
  5428. getUint8 = 0
  5429. getInt16 = 0
  5430. getUint16 = 0
  5431. getInt32 = 0
  5432. getUint32 = 0
  5433. getFloat32 = 0
  5434. getFloat64 = 0
  5435. set little endian value offset 3 value 0 method setFloat32
  5436. results of little endian reads are:
  5437. getInt8 = 0
  5438. getUint8 = 0
  5439. getInt16 = 0
  5440. getUint16 = 0
  5441. getInt32 = 0
  5442. getUint32 = 0
  5443. getFloat32 = 0
  5444. getFloat64 = 0
  5445. results of big endian reads are:
  5446. getInt8 = 0
  5447. getUint8 = 0
  5448. getInt16 = 0
  5449. getUint16 = 0
  5450. getInt32 = 0
  5451. getUint32 = 0
  5452. getFloat32 = 0
  5453. getFloat64 = 0
  5454. set little endian value offset 3 value 0 method setFloat32
  5455. results of little endian reads are:
  5456. getInt8 = 0
  5457. getUint8 = 0
  5458. getInt16 = 0
  5459. getUint16 = 0
  5460. getInt32 = 0
  5461. getUint32 = 0
  5462. getFloat32 = 0
  5463. getFloat64 = 0
  5464. results of big endian reads are:
  5465. getInt8 = 0
  5466. getUint8 = 0
  5467. getInt16 = 0
  5468. getUint16 = 0
  5469. getInt32 = 0
  5470. getUint32 = 0
  5471. getFloat32 = 0
  5472. getFloat64 = 0
  5473. set little endian value offset 3 value 0 method setFloat64
  5474. results of little endian reads are:
  5475. getInt8 = 0
  5476. getUint8 = 0
  5477. getInt16 = 0
  5478. getUint16 = 0
  5479. getInt32 = 0
  5480. getUint32 = 0
  5481. getFloat32 = 0
  5482. getFloat64 = 0
  5483. results of big endian reads are:
  5484. getInt8 = 0
  5485. getUint8 = 0
  5486. getInt16 = 0
  5487. getUint16 = 0
  5488. getInt32 = 0
  5489. getUint32 = 0
  5490. getFloat32 = 0
  5491. getFloat64 = 0
  5492. set little endian value offset 3 value 0 method setFloat64
  5493. results of little endian reads are:
  5494. getInt8 = 0
  5495. getUint8 = 0
  5496. getInt16 = 0
  5497. getUint16 = 0
  5498. getInt32 = 0
  5499. getUint32 = 0
  5500. getFloat32 = 0
  5501. getFloat64 = 0
  5502. results of big endian reads are:
  5503. getInt8 = 0
  5504. getUint8 = 0
  5505. getInt16 = 0
  5506. getUint16 = 0
  5507. getInt32 = 0
  5508. getUint32 = 0
  5509. getFloat32 = 0
  5510. getFloat64 = 0
  5511. set little endian value offset 4 value 0 method setInt8
  5512. results of little endian reads are:
  5513. getInt8 = 0
  5514. getUint8 = 0
  5515. getInt16 = 0
  5516. getUint16 = 0
  5517. getInt32 = 0
  5518. getUint32 = 0
  5519. getFloat32 = 0
  5520. getFloat64 = 0
  5521. results of big endian reads are:
  5522. getInt8 = 0
  5523. getUint8 = 0
  5524. getInt16 = 0
  5525. getUint16 = 0
  5526. getInt32 = 0
  5527. getUint32 = 0
  5528. getFloat32 = 0
  5529. getFloat64 = 0
  5530. set little endian value offset 4 value 0 method setInt8
  5531. results of little endian reads are:
  5532. getInt8 = 0
  5533. getUint8 = 0
  5534. getInt16 = 0
  5535. getUint16 = 0
  5536. getInt32 = 0
  5537. getUint32 = 0
  5538. getFloat32 = 0
  5539. getFloat64 = 0
  5540. results of big endian reads are:
  5541. getInt8 = 0
  5542. getUint8 = 0
  5543. getInt16 = 0
  5544. getUint16 = 0
  5545. getInt32 = 0
  5546. getUint32 = 0
  5547. getFloat32 = 0
  5548. getFloat64 = 0
  5549. set little endian value offset 4 value 0 method setUint8
  5550. results of little endian reads are:
  5551. getInt8 = 0
  5552. getUint8 = 0
  5553. getInt16 = 0
  5554. getUint16 = 0
  5555. getInt32 = 0
  5556. getUint32 = 0
  5557. getFloat32 = 0
  5558. getFloat64 = 0
  5559. results of big endian reads are:
  5560. getInt8 = 0
  5561. getUint8 = 0
  5562. getInt16 = 0
  5563. getUint16 = 0
  5564. getInt32 = 0
  5565. getUint32 = 0
  5566. getFloat32 = 0
  5567. getFloat64 = 0
  5568. set little endian value offset 4 value 0 method setUint8
  5569. results of little endian reads are:
  5570. getInt8 = 0
  5571. getUint8 = 0
  5572. getInt16 = 0
  5573. getUint16 = 0
  5574. getInt32 = 0
  5575. getUint32 = 0
  5576. getFloat32 = 0
  5577. getFloat64 = 0
  5578. results of big endian reads are:
  5579. getInt8 = 0
  5580. getUint8 = 0
  5581. getInt16 = 0
  5582. getUint16 = 0
  5583. getInt32 = 0
  5584. getUint32 = 0
  5585. getFloat32 = 0
  5586. getFloat64 = 0
  5587. set little endian value offset 4 value 0 method setInt16
  5588. results of little endian reads are:
  5589. getInt8 = 0
  5590. getUint8 = 0
  5591. getInt16 = 0
  5592. getUint16 = 0
  5593. getInt32 = 0
  5594. getUint32 = 0
  5595. getFloat32 = 0
  5596. getFloat64 = 0
  5597. results of big endian reads are:
  5598. getInt8 = 0
  5599. getUint8 = 0
  5600. getInt16 = 0
  5601. getUint16 = 0
  5602. getInt32 = 0
  5603. getUint32 = 0
  5604. getFloat32 = 0
  5605. getFloat64 = 0
  5606. set little endian value offset 4 value 0 method setInt16
  5607. results of little endian reads are:
  5608. getInt8 = 0
  5609. getUint8 = 0
  5610. getInt16 = 0
  5611. getUint16 = 0
  5612. getInt32 = 0
  5613. getUint32 = 0
  5614. getFloat32 = 0
  5615. getFloat64 = 0
  5616. results of big endian reads are:
  5617. getInt8 = 0
  5618. getUint8 = 0
  5619. getInt16 = 0
  5620. getUint16 = 0
  5621. getInt32 = 0
  5622. getUint32 = 0
  5623. getFloat32 = 0
  5624. getFloat64 = 0
  5625. set little endian value offset 4 value 0 method setUint16
  5626. results of little endian reads are:
  5627. getInt8 = 0
  5628. getUint8 = 0
  5629. getInt16 = 0
  5630. getUint16 = 0
  5631. getInt32 = 0
  5632. getUint32 = 0
  5633. getFloat32 = 0
  5634. getFloat64 = 0
  5635. results of big endian reads are:
  5636. getInt8 = 0
  5637. getUint8 = 0
  5638. getInt16 = 0
  5639. getUint16 = 0
  5640. getInt32 = 0
  5641. getUint32 = 0
  5642. getFloat32 = 0
  5643. getFloat64 = 0
  5644. set little endian value offset 4 value 0 method setUint16
  5645. results of little endian reads are:
  5646. getInt8 = 0
  5647. getUint8 = 0
  5648. getInt16 = 0
  5649. getUint16 = 0
  5650. getInt32 = 0
  5651. getUint32 = 0
  5652. getFloat32 = 0
  5653. getFloat64 = 0
  5654. results of big endian reads are:
  5655. getInt8 = 0
  5656. getUint8 = 0
  5657. getInt16 = 0
  5658. getUint16 = 0
  5659. getInt32 = 0
  5660. getUint32 = 0
  5661. getFloat32 = 0
  5662. getFloat64 = 0
  5663. set little endian value offset 4 value 0 method setInt32
  5664. results of little endian reads are:
  5665. getInt8 = 0
  5666. getUint8 = 0
  5667. getInt16 = 0
  5668. getUint16 = 0
  5669. getInt32 = 0
  5670. getUint32 = 0
  5671. getFloat32 = 0
  5672. getFloat64 = 0
  5673. results of big endian reads are:
  5674. getInt8 = 0
  5675. getUint8 = 0
  5676. getInt16 = 0
  5677. getUint16 = 0
  5678. getInt32 = 0
  5679. getUint32 = 0
  5680. getFloat32 = 0
  5681. getFloat64 = 0
  5682. set little endian value offset 4 value 0 method setInt32
  5683. results of little endian reads are:
  5684. getInt8 = 0
  5685. getUint8 = 0
  5686. getInt16 = 0
  5687. getUint16 = 0
  5688. getInt32 = 0
  5689. getUint32 = 0
  5690. getFloat32 = 0
  5691. getFloat64 = 0
  5692. results of big endian reads are:
  5693. getInt8 = 0
  5694. getUint8 = 0
  5695. getInt16 = 0
  5696. getUint16 = 0
  5697. getInt32 = 0
  5698. getUint32 = 0
  5699. getFloat32 = 0
  5700. getFloat64 = 0
  5701. set little endian value offset 4 value 0 method setUint32
  5702. results of little endian reads are:
  5703. getInt8 = 0
  5704. getUint8 = 0
  5705. getInt16 = 0
  5706. getUint16 = 0
  5707. getInt32 = 0
  5708. getUint32 = 0
  5709. getFloat32 = 0
  5710. getFloat64 = 0
  5711. results of big endian reads are:
  5712. getInt8 = 0
  5713. getUint8 = 0
  5714. getInt16 = 0
  5715. getUint16 = 0
  5716. getInt32 = 0
  5717. getUint32 = 0
  5718. getFloat32 = 0
  5719. getFloat64 = 0
  5720. set little endian value offset 4 value 0 method setUint32
  5721. results of little endian reads are:
  5722. getInt8 = 0
  5723. getUint8 = 0
  5724. getInt16 = 0
  5725. getUint16 = 0
  5726. getInt32 = 0
  5727. getUint32 = 0
  5728. getFloat32 = 0
  5729. getFloat64 = 0
  5730. results of big endian reads are:
  5731. getInt8 = 0
  5732. getUint8 = 0
  5733. getInt16 = 0
  5734. getUint16 = 0
  5735. getInt32 = 0
  5736. getUint32 = 0
  5737. getFloat32 = 0
  5738. getFloat64 = 0
  5739. set little endian value offset 4 value 0 method setFloat32
  5740. results of little endian reads are:
  5741. getInt8 = 0
  5742. getUint8 = 0
  5743. getInt16 = 0
  5744. getUint16 = 0
  5745. getInt32 = 0
  5746. getUint32 = 0
  5747. getFloat32 = 0
  5748. getFloat64 = 0
  5749. results of big endian reads are:
  5750. getInt8 = 0
  5751. getUint8 = 0
  5752. getInt16 = 0
  5753. getUint16 = 0
  5754. getInt32 = 0
  5755. getUint32 = 0
  5756. getFloat32 = 0
  5757. getFloat64 = 0
  5758. set little endian value offset 4 value 0 method setFloat32
  5759. results of little endian reads are:
  5760. getInt8 = 0
  5761. getUint8 = 0
  5762. getInt16 = 0
  5763. getUint16 = 0
  5764. getInt32 = 0
  5765. getUint32 = 0
  5766. getFloat32 = 0
  5767. getFloat64 = 0
  5768. results of big endian reads are:
  5769. getInt8 = 0
  5770. getUint8 = 0
  5771. getInt16 = 0
  5772. getUint16 = 0
  5773. getInt32 = 0
  5774. getUint32 = 0
  5775. getFloat32 = 0
  5776. getFloat64 = 0
  5777. set little endian value offset 4 value 0 method setFloat64
  5778. results of little endian reads are:
  5779. getInt8 = 0
  5780. getUint8 = 0
  5781. getInt16 = 0
  5782. getUint16 = 0
  5783. getInt32 = 0
  5784. getUint32 = 0
  5785. getFloat32 = 0
  5786. getFloat64 = 0
  5787. results of big endian reads are:
  5788. getInt8 = 0
  5789. getUint8 = 0
  5790. getInt16 = 0
  5791. getUint16 = 0
  5792. getInt32 = 0
  5793. getUint32 = 0
  5794. getFloat32 = 0
  5795. getFloat64 = 0
  5796. set little endian value offset 4 value 0 method setFloat64
  5797. results of little endian reads are:
  5798. getInt8 = 0
  5799. getUint8 = 0
  5800. getInt16 = 0
  5801. getUint16 = 0
  5802. getInt32 = 0
  5803. getUint32 = 0
  5804. getFloat32 = 0
  5805. getFloat64 = 0
  5806. results of big endian reads are:
  5807. getInt8 = 0
  5808. getUint8 = 0
  5809. getInt16 = 0
  5810. getUint16 = 0
  5811. getInt32 = 0
  5812. getUint32 = 0
  5813. getFloat32 = 0
  5814. getFloat64 = 0
  5815. set little endian value offset 5 value 0 method setInt8
  5816. results of little endian reads are:
  5817. getInt8 = 0
  5818. getUint8 = 0
  5819. getInt16 = 0
  5820. getUint16 = 0
  5821. getInt32 = 0
  5822. getUint32 = 0
  5823. getFloat32 = 0
  5824. getFloat64 = 0
  5825. results of big endian reads are:
  5826. getInt8 = 0
  5827. getUint8 = 0
  5828. getInt16 = 0
  5829. getUint16 = 0
  5830. getInt32 = 0
  5831. getUint32 = 0
  5832. getFloat32 = 0
  5833. getFloat64 = 0
  5834. set little endian value offset 5 value 0 method setInt8
  5835. results of little endian reads are:
  5836. getInt8 = 0
  5837. getUint8 = 0
  5838. getInt16 = 0
  5839. getUint16 = 0
  5840. getInt32 = 0
  5841. getUint32 = 0
  5842. getFloat32 = 0
  5843. getFloat64 = 0
  5844. results of big endian reads are:
  5845. getInt8 = 0
  5846. getUint8 = 0
  5847. getInt16 = 0
  5848. getUint16 = 0
  5849. getInt32 = 0
  5850. getUint32 = 0
  5851. getFloat32 = 0
  5852. getFloat64 = 0
  5853. set little endian value offset 5 value 0 method setUint8
  5854. results of little endian reads are:
  5855. getInt8 = 0
  5856. getUint8 = 0
  5857. getInt16 = 0
  5858. getUint16 = 0
  5859. getInt32 = 0
  5860. getUint32 = 0
  5861. getFloat32 = 0
  5862. getFloat64 = 0
  5863. results of big endian reads are:
  5864. getInt8 = 0
  5865. getUint8 = 0
  5866. getInt16 = 0
  5867. getUint16 = 0
  5868. getInt32 = 0
  5869. getUint32 = 0
  5870. getFloat32 = 0
  5871. getFloat64 = 0
  5872. set little endian value offset 5 value 0 method setUint8
  5873. results of little endian reads are:
  5874. getInt8 = 0
  5875. getUint8 = 0
  5876. getInt16 = 0
  5877. getUint16 = 0
  5878. getInt32 = 0
  5879. getUint32 = 0
  5880. getFloat32 = 0
  5881. getFloat64 = 0
  5882. results of big endian reads are:
  5883. getInt8 = 0
  5884. getUint8 = 0
  5885. getInt16 = 0
  5886. getUint16 = 0
  5887. getInt32 = 0
  5888. getUint32 = 0
  5889. getFloat32 = 0
  5890. getFloat64 = 0
  5891. set little endian value offset 5 value 0 method setInt16
  5892. results of little endian reads are:
  5893. getInt8 = 0
  5894. getUint8 = 0
  5895. getInt16 = 0
  5896. getUint16 = 0
  5897. getInt32 = 0
  5898. getUint32 = 0
  5899. getFloat32 = 0
  5900. getFloat64 = 0
  5901. results of big endian reads are:
  5902. getInt8 = 0
  5903. getUint8 = 0
  5904. getInt16 = 0
  5905. getUint16 = 0
  5906. getInt32 = 0
  5907. getUint32 = 0
  5908. getFloat32 = 0
  5909. getFloat64 = 0
  5910. set little endian value offset 5 value 0 method setInt16
  5911. results of little endian reads are:
  5912. getInt8 = 0
  5913. getUint8 = 0
  5914. getInt16 = 0
  5915. getUint16 = 0
  5916. getInt32 = 0
  5917. getUint32 = 0
  5918. getFloat32 = 0
  5919. getFloat64 = 0
  5920. results of big endian reads are:
  5921. getInt8 = 0
  5922. getUint8 = 0
  5923. getInt16 = 0
  5924. getUint16 = 0
  5925. getInt32 = 0
  5926. getUint32 = 0
  5927. getFloat32 = 0
  5928. getFloat64 = 0
  5929. set little endian value offset 5 value 0 method setUint16
  5930. results of little endian reads are:
  5931. getInt8 = 0
  5932. getUint8 = 0
  5933. getInt16 = 0
  5934. getUint16 = 0
  5935. getInt32 = 0
  5936. getUint32 = 0
  5937. getFloat32 = 0
  5938. getFloat64 = 0
  5939. results of big endian reads are:
  5940. getInt8 = 0
  5941. getUint8 = 0
  5942. getInt16 = 0
  5943. getUint16 = 0
  5944. getInt32 = 0
  5945. getUint32 = 0
  5946. getFloat32 = 0
  5947. getFloat64 = 0
  5948. set little endian value offset 5 value 0 method setUint16
  5949. results of little endian reads are:
  5950. getInt8 = 0
  5951. getUint8 = 0
  5952. getInt16 = 0
  5953. getUint16 = 0
  5954. getInt32 = 0
  5955. getUint32 = 0
  5956. getFloat32 = 0
  5957. getFloat64 = 0
  5958. results of big endian reads are:
  5959. getInt8 = 0
  5960. getUint8 = 0
  5961. getInt16 = 0
  5962. getUint16 = 0
  5963. getInt32 = 0
  5964. getUint32 = 0
  5965. getFloat32 = 0
  5966. getFloat64 = 0
  5967. set little endian value offset 5 value 0 method setInt32
  5968. results of little endian reads are:
  5969. getInt8 = 0
  5970. getUint8 = 0
  5971. getInt16 = 0
  5972. getUint16 = 0
  5973. getInt32 = 0
  5974. getUint32 = 0
  5975. getFloat32 = 0
  5976. getFloat64 = 0
  5977. results of big endian reads are:
  5978. getInt8 = 0
  5979. getUint8 = 0
  5980. getInt16 = 0
  5981. getUint16 = 0
  5982. getInt32 = 0
  5983. getUint32 = 0
  5984. getFloat32 = 0
  5985. getFloat64 = 0
  5986. set little endian value offset 5 value 0 method setInt32
  5987. results of little endian reads are:
  5988. getInt8 = 0
  5989. getUint8 = 0
  5990. getInt16 = 0
  5991. getUint16 = 0
  5992. getInt32 = 0
  5993. getUint32 = 0
  5994. getFloat32 = 0
  5995. getFloat64 = 0
  5996. results of big endian reads are:
  5997. getInt8 = 0
  5998. getUint8 = 0
  5999. getInt16 = 0
  6000. getUint16 = 0
  6001. getInt32 = 0
  6002. getUint32 = 0
  6003. getFloat32 = 0
  6004. getFloat64 = 0
  6005. set little endian value offset 5 value 0 method setUint32
  6006. results of little endian reads are:
  6007. getInt8 = 0
  6008. getUint8 = 0
  6009. getInt16 = 0
  6010. getUint16 = 0
  6011. getInt32 = 0
  6012. getUint32 = 0
  6013. getFloat32 = 0
  6014. getFloat64 = 0
  6015. results of big endian reads are:
  6016. getInt8 = 0
  6017. getUint8 = 0
  6018. getInt16 = 0
  6019. getUint16 = 0
  6020. getInt32 = 0
  6021. getUint32 = 0
  6022. getFloat32 = 0
  6023. getFloat64 = 0
  6024. set little endian value offset 5 value 0 method setUint32
  6025. results of little endian reads are:
  6026. getInt8 = 0
  6027. getUint8 = 0
  6028. getInt16 = 0
  6029. getUint16 = 0
  6030. getInt32 = 0
  6031. getUint32 = 0
  6032. getFloat32 = 0
  6033. getFloat64 = 0
  6034. results of big endian reads are:
  6035. getInt8 = 0
  6036. getUint8 = 0
  6037. getInt16 = 0
  6038. getUint16 = 0
  6039. getInt32 = 0
  6040. getUint32 = 0
  6041. getFloat32 = 0
  6042. getFloat64 = 0
  6043. set little endian value offset 5 value 0 method setFloat32
  6044. results of little endian reads are:
  6045. getInt8 = 0
  6046. getUint8 = 0
  6047. getInt16 = 0
  6048. getUint16 = 0
  6049. getInt32 = 0
  6050. getUint32 = 0
  6051. getFloat32 = 0
  6052. getFloat64 = 0
  6053. results of big endian reads are:
  6054. getInt8 = 0
  6055. getUint8 = 0
  6056. getInt16 = 0
  6057. getUint16 = 0
  6058. getInt32 = 0
  6059. getUint32 = 0
  6060. getFloat32 = 0
  6061. getFloat64 = 0
  6062. set little endian value offset 5 value 0 method setFloat32
  6063. results of little endian reads are:
  6064. getInt8 = 0
  6065. getUint8 = 0
  6066. getInt16 = 0
  6067. getUint16 = 0
  6068. getInt32 = 0
  6069. getUint32 = 0
  6070. getFloat32 = 0
  6071. getFloat64 = 0
  6072. results of big endian reads are:
  6073. getInt8 = 0
  6074. getUint8 = 0
  6075. getInt16 = 0
  6076. getUint16 = 0
  6077. getInt32 = 0
  6078. getUint32 = 0
  6079. getFloat32 = 0
  6080. getFloat64 = 0
  6081. set little endian value offset 5 value 0 method setFloat64
  6082. results of little endian reads are:
  6083. getInt8 = 0
  6084. getUint8 = 0
  6085. getInt16 = 0
  6086. getUint16 = 0
  6087. getInt32 = 0
  6088. getUint32 = 0
  6089. getFloat32 = 0
  6090. getFloat64 = 0
  6091. results of big endian reads are:
  6092. getInt8 = 0
  6093. getUint8 = 0
  6094. getInt16 = 0
  6095. getUint16 = 0
  6096. getInt32 = 0
  6097. getUint32 = 0
  6098. getFloat32 = 0
  6099. getFloat64 = 0
  6100. set little endian value offset 5 value 0 method setFloat64
  6101. results of little endian reads are:
  6102. getInt8 = 0
  6103. getUint8 = 0
  6104. getInt16 = 0
  6105. getUint16 = 0
  6106. getInt32 = 0
  6107. getUint32 = 0
  6108. getFloat32 = 0
  6109. getFloat64 = 0
  6110. results of big endian reads are:
  6111. getInt8 = 0
  6112. getUint8 = 0
  6113. getInt16 = 0
  6114. getUint16 = 0
  6115. getInt32 = 0
  6116. getUint32 = 0
  6117. getFloat32 = 0
  6118. getFloat64 = 0
  6119. set little endian value offset 6 value 0 method setInt8
  6120. results of little endian reads are:
  6121. getInt8 = 0
  6122. getUint8 = 0
  6123. getInt16 = 0
  6124. getUint16 = 0
  6125. getInt32 = 0
  6126. getUint32 = 0
  6127. getFloat32 = 0
  6128. getFloat64 = 0
  6129. results of big endian reads are:
  6130. getInt8 = 0
  6131. getUint8 = 0
  6132. getInt16 = 0
  6133. getUint16 = 0
  6134. getInt32 = 0
  6135. getUint32 = 0
  6136. getFloat32 = 0
  6137. getFloat64 = 0
  6138. set little endian value offset 6 value 0 method setInt8
  6139. results of little endian reads are:
  6140. getInt8 = 0
  6141. getUint8 = 0
  6142. getInt16 = 0
  6143. getUint16 = 0
  6144. getInt32 = 0
  6145. getUint32 = 0
  6146. getFloat32 = 0
  6147. getFloat64 = 0
  6148. results of big endian reads are:
  6149. getInt8 = 0
  6150. getUint8 = 0
  6151. getInt16 = 0
  6152. getUint16 = 0
  6153. getInt32 = 0
  6154. getUint32 = 0
  6155. getFloat32 = 0
  6156. getFloat64 = 0
  6157. set little endian value offset 6 value 0 method setUint8
  6158. results of little endian reads are:
  6159. getInt8 = 0
  6160. getUint8 = 0
  6161. getInt16 = 0
  6162. getUint16 = 0
  6163. getInt32 = 0
  6164. getUint32 = 0
  6165. getFloat32 = 0
  6166. getFloat64 = 0
  6167. results of big endian reads are:
  6168. getInt8 = 0
  6169. getUint8 = 0
  6170. getInt16 = 0
  6171. getUint16 = 0
  6172. getInt32 = 0
  6173. getUint32 = 0
  6174. getFloat32 = 0
  6175. getFloat64 = 0
  6176. set little endian value offset 6 value 0 method setUint8
  6177. results of little endian reads are:
  6178. getInt8 = 0
  6179. getUint8 = 0
  6180. getInt16 = 0
  6181. getUint16 = 0
  6182. getInt32 = 0
  6183. getUint32 = 0
  6184. getFloat32 = 0
  6185. getFloat64 = 0
  6186. results of big endian reads are:
  6187. getInt8 = 0
  6188. getUint8 = 0
  6189. getInt16 = 0
  6190. getUint16 = 0
  6191. getInt32 = 0
  6192. getUint32 = 0
  6193. getFloat32 = 0
  6194. getFloat64 = 0
  6195. set little endian value offset 6 value 0 method setInt16
  6196. results of little endian reads are:
  6197. getInt8 = 0
  6198. getUint8 = 0
  6199. getInt16 = 0
  6200. getUint16 = 0
  6201. getInt32 = 0
  6202. getUint32 = 0
  6203. getFloat32 = 0
  6204. getFloat64 = 0
  6205. results of big endian reads are:
  6206. getInt8 = 0
  6207. getUint8 = 0
  6208. getInt16 = 0
  6209. getUint16 = 0
  6210. getInt32 = 0
  6211. getUint32 = 0
  6212. getFloat32 = 0
  6213. getFloat64 = 0
  6214. set little endian value offset 6 value 0 method setInt16
  6215. results of little endian reads are:
  6216. getInt8 = 0
  6217. getUint8 = 0
  6218. getInt16 = 0
  6219. getUint16 = 0
  6220. getInt32 = 0
  6221. getUint32 = 0
  6222. getFloat32 = 0
  6223. getFloat64 = 0
  6224. results of big endian reads are:
  6225. getInt8 = 0
  6226. getUint8 = 0
  6227. getInt16 = 0
  6228. getUint16 = 0
  6229. getInt32 = 0
  6230. getUint32 = 0
  6231. getFloat32 = 0
  6232. getFloat64 = 0
  6233. set little endian value offset 6 value 0 method setUint16
  6234. results of little endian reads are:
  6235. getInt8 = 0
  6236. getUint8 = 0
  6237. getInt16 = 0
  6238. getUint16 = 0
  6239. getInt32 = 0
  6240. getUint32 = 0
  6241. getFloat32 = 0
  6242. getFloat64 = 0
  6243. results of big endian reads are:
  6244. getInt8 = 0
  6245. getUint8 = 0
  6246. getInt16 = 0
  6247. getUint16 = 0
  6248. getInt32 = 0
  6249. getUint32 = 0
  6250. getFloat32 = 0
  6251. getFloat64 = 0
  6252. set little endian value offset 6 value 0 method setUint16
  6253. results of little endian reads are:
  6254. getInt8 = 0
  6255. getUint8 = 0
  6256. getInt16 = 0
  6257. getUint16 = 0
  6258. getInt32 = 0
  6259. getUint32 = 0
  6260. getFloat32 = 0
  6261. getFloat64 = 0
  6262. results of big endian reads are:
  6263. getInt8 = 0
  6264. getUint8 = 0
  6265. getInt16 = 0
  6266. getUint16 = 0
  6267. getInt32 = 0
  6268. getUint32 = 0
  6269. getFloat32 = 0
  6270. getFloat64 = 0
  6271. set little endian value offset 6 value 0 method setInt32
  6272. results of little endian reads are:
  6273. getInt8 = 0
  6274. getUint8 = 0
  6275. getInt16 = 0
  6276. getUint16 = 0
  6277. getInt32 = 0
  6278. getUint32 = 0
  6279. getFloat32 = 0
  6280. getFloat64 = 0
  6281. results of big endian reads are:
  6282. getInt8 = 0
  6283. getUint8 = 0
  6284. getInt16 = 0
  6285. getUint16 = 0
  6286. getInt32 = 0
  6287. getUint32 = 0
  6288. getFloat32 = 0
  6289. getFloat64 = 0
  6290. set little endian value offset 6 value 0 method setInt32
  6291. results of little endian reads are:
  6292. getInt8 = 0
  6293. getUint8 = 0
  6294. getInt16 = 0
  6295. getUint16 = 0
  6296. getInt32 = 0
  6297. getUint32 = 0
  6298. getFloat32 = 0
  6299. getFloat64 = 0
  6300. results of big endian reads are:
  6301. getInt8 = 0
  6302. getUint8 = 0
  6303. getInt16 = 0
  6304. getUint16 = 0
  6305. getInt32 = 0
  6306. getUint32 = 0
  6307. getFloat32 = 0
  6308. getFloat64 = 0
  6309. set little endian value offset 6 value 0 method setUint32
  6310. results of little endian reads are:
  6311. getInt8 = 0
  6312. getUint8 = 0
  6313. getInt16 = 0
  6314. getUint16 = 0
  6315. getInt32 = 0
  6316. getUint32 = 0
  6317. getFloat32 = 0
  6318. getFloat64 = 0
  6319. results of big endian reads are:
  6320. getInt8 = 0
  6321. getUint8 = 0
  6322. getInt16 = 0
  6323. getUint16 = 0
  6324. getInt32 = 0
  6325. getUint32 = 0
  6326. getFloat32 = 0
  6327. getFloat64 = 0
  6328. set little endian value offset 6 value 0 method setUint32
  6329. results of little endian reads are:
  6330. getInt8 = 0
  6331. getUint8 = 0
  6332. getInt16 = 0
  6333. getUint16 = 0
  6334. getInt32 = 0
  6335. getUint32 = 0
  6336. getFloat32 = 0
  6337. getFloat64 = 0
  6338. results of big endian reads are:
  6339. getInt8 = 0
  6340. getUint8 = 0
  6341. getInt16 = 0
  6342. getUint16 = 0
  6343. getInt32 = 0
  6344. getUint32 = 0
  6345. getFloat32 = 0
  6346. getFloat64 = 0
  6347. set little endian value offset 6 value 0 method setFloat32
  6348. results of little endian reads are:
  6349. getInt8 = 0
  6350. getUint8 = 0
  6351. getInt16 = 0
  6352. getUint16 = 0
  6353. getInt32 = 0
  6354. getUint32 = 0
  6355. getFloat32 = 0
  6356. getFloat64 = 0
  6357. results of big endian reads are:
  6358. getInt8 = 0
  6359. getUint8 = 0
  6360. getInt16 = 0
  6361. getUint16 = 0
  6362. getInt32 = 0
  6363. getUint32 = 0
  6364. getFloat32 = 0
  6365. getFloat64 = 0
  6366. set little endian value offset 6 value 0 method setFloat32
  6367. results of little endian reads are:
  6368. getInt8 = 0
  6369. getUint8 = 0
  6370. getInt16 = 0
  6371. getUint16 = 0
  6372. getInt32 = 0
  6373. getUint32 = 0
  6374. getFloat32 = 0
  6375. getFloat64 = 0
  6376. results of big endian reads are:
  6377. getInt8 = 0
  6378. getUint8 = 0
  6379. getInt16 = 0
  6380. getUint16 = 0
  6381. getInt32 = 0
  6382. getUint32 = 0
  6383. getFloat32 = 0
  6384. getFloat64 = 0
  6385. set little endian value offset 6 value 0 method setFloat64
  6386. results of little endian reads are:
  6387. getInt8 = 0
  6388. getUint8 = 0
  6389. getInt16 = 0
  6390. getUint16 = 0
  6391. getInt32 = 0
  6392. getUint32 = 0
  6393. getFloat32 = 0
  6394. getFloat64 = 0
  6395. results of big endian reads are:
  6396. getInt8 = 0
  6397. getUint8 = 0
  6398. getInt16 = 0
  6399. getUint16 = 0
  6400. getInt32 = 0
  6401. getUint32 = 0
  6402. getFloat32 = 0
  6403. getFloat64 = 0
  6404. set little endian value offset 6 value 0 method setFloat64
  6405. results of little endian reads are:
  6406. getInt8 = 0
  6407. getUint8 = 0
  6408. getInt16 = 0
  6409. getUint16 = 0
  6410. getInt32 = 0
  6411. getUint32 = 0
  6412. getFloat32 = 0
  6413. getFloat64 = 0
  6414. results of big endian reads are:
  6415. getInt8 = 0
  6416. getUint8 = 0
  6417. getInt16 = 0
  6418. getUint16 = 0
  6419. getInt32 = 0
  6420. getUint32 = 0
  6421. getFloat32 = 0
  6422. getFloat64 = 0
  6423. set little endian value offset 7 value 0 method setInt8
  6424. results of little endian reads are:
  6425. getInt8 = 0
  6426. getUint8 = 0
  6427. getInt16 = 0
  6428. getUint16 = 0
  6429. getInt32 = 0
  6430. getUint32 = 0
  6431. getFloat32 = 0
  6432. getFloat64 = 0
  6433. results of big endian reads are:
  6434. getInt8 = 0
  6435. getUint8 = 0
  6436. getInt16 = 0
  6437. getUint16 = 0
  6438. getInt32 = 0
  6439. getUint32 = 0
  6440. getFloat32 = 0
  6441. getFloat64 = 0
  6442. set little endian value offset 7 value 0 method setInt8
  6443. results of little endian reads are:
  6444. getInt8 = 0
  6445. getUint8 = 0
  6446. getInt16 = 0
  6447. getUint16 = 0
  6448. getInt32 = 0
  6449. getUint32 = 0
  6450. getFloat32 = 0
  6451. getFloat64 = 0
  6452. results of big endian reads are:
  6453. getInt8 = 0
  6454. getUint8 = 0
  6455. getInt16 = 0
  6456. getUint16 = 0
  6457. getInt32 = 0
  6458. getUint32 = 0
  6459. getFloat32 = 0
  6460. getFloat64 = 0
  6461. set little endian value offset 7 value 0 method setUint8
  6462. results of little endian reads are:
  6463. getInt8 = 0
  6464. getUint8 = 0
  6465. getInt16 = 0
  6466. getUint16 = 0
  6467. getInt32 = 0
  6468. getUint32 = 0
  6469. getFloat32 = 0
  6470. getFloat64 = 0
  6471. results of big endian reads are:
  6472. getInt8 = 0
  6473. getUint8 = 0
  6474. getInt16 = 0
  6475. getUint16 = 0
  6476. getInt32 = 0
  6477. getUint32 = 0
  6478. getFloat32 = 0
  6479. getFloat64 = 0
  6480. set little endian value offset 7 value 0 method setUint8
  6481. results of little endian reads are:
  6482. getInt8 = 0
  6483. getUint8 = 0
  6484. getInt16 = 0
  6485. getUint16 = 0
  6486. getInt32 = 0
  6487. getUint32 = 0
  6488. getFloat32 = 0
  6489. getFloat64 = 0
  6490. results of big endian reads are:
  6491. getInt8 = 0
  6492. getUint8 = 0
  6493. getInt16 = 0
  6494. getUint16 = 0
  6495. getInt32 = 0
  6496. getUint32 = 0
  6497. getFloat32 = 0
  6498. getFloat64 = 0
  6499. set little endian value offset 7 value 0 method setInt16
  6500. results of little endian reads are:
  6501. getInt8 = 0
  6502. getUint8 = 0
  6503. getInt16 = 0
  6504. getUint16 = 0
  6505. getInt32 = 0
  6506. getUint32 = 0
  6507. getFloat32 = 0
  6508. getFloat64 = 0
  6509. results of big endian reads are:
  6510. getInt8 = 0
  6511. getUint8 = 0
  6512. getInt16 = 0
  6513. getUint16 = 0
  6514. getInt32 = 0
  6515. getUint32 = 0
  6516. getFloat32 = 0
  6517. getFloat64 = 0
  6518. set little endian value offset 7 value 0 method setInt16
  6519. results of little endian reads are:
  6520. getInt8 = 0
  6521. getUint8 = 0
  6522. getInt16 = 0
  6523. getUint16 = 0
  6524. getInt32 = 0
  6525. getUint32 = 0
  6526. getFloat32 = 0
  6527. getFloat64 = 0
  6528. results of big endian reads are:
  6529. getInt8 = 0
  6530. getUint8 = 0
  6531. getInt16 = 0
  6532. getUint16 = 0
  6533. getInt32 = 0
  6534. getUint32 = 0
  6535. getFloat32 = 0
  6536. getFloat64 = 0
  6537. set little endian value offset 7 value 0 method setUint16
  6538. results of little endian reads are:
  6539. getInt8 = 0
  6540. getUint8 = 0
  6541. getInt16 = 0
  6542. getUint16 = 0
  6543. getInt32 = 0
  6544. getUint32 = 0
  6545. getFloat32 = 0
  6546. getFloat64 = 0
  6547. results of big endian reads are:
  6548. getInt8 = 0
  6549. getUint8 = 0
  6550. getInt16 = 0
  6551. getUint16 = 0
  6552. getInt32 = 0
  6553. getUint32 = 0
  6554. getFloat32 = 0
  6555. getFloat64 = 0
  6556. set little endian value offset 7 value 0 method setUint16
  6557. results of little endian reads are:
  6558. getInt8 = 0
  6559. getUint8 = 0
  6560. getInt16 = 0
  6561. getUint16 = 0
  6562. getInt32 = 0
  6563. getUint32 = 0
  6564. getFloat32 = 0
  6565. getFloat64 = 0
  6566. results of big endian reads are:
  6567. getInt8 = 0
  6568. getUint8 = 0
  6569. getInt16 = 0
  6570. getUint16 = 0
  6571. getInt32 = 0
  6572. getUint32 = 0
  6573. getFloat32 = 0
  6574. getFloat64 = 0
  6575. set little endian value offset 7 value 0 method setInt32
  6576. results of little endian reads are:
  6577. getInt8 = 0
  6578. getUint8 = 0
  6579. getInt16 = 0
  6580. getUint16 = 0
  6581. getInt32 = 0
  6582. getUint32 = 0
  6583. getFloat32 = 0
  6584. getFloat64 = 0
  6585. results of big endian reads are:
  6586. getInt8 = 0
  6587. getUint8 = 0
  6588. getInt16 = 0
  6589. getUint16 = 0
  6590. getInt32 = 0
  6591. getUint32 = 0
  6592. getFloat32 = 0
  6593. getFloat64 = 0
  6594. set little endian value offset 7 value 0 method setInt32
  6595. results of little endian reads are:
  6596. getInt8 = 0
  6597. getUint8 = 0
  6598. getInt16 = 0
  6599. getUint16 = 0
  6600. getInt32 = 0
  6601. getUint32 = 0
  6602. getFloat32 = 0
  6603. getFloat64 = 0
  6604. results of big endian reads are:
  6605. getInt8 = 0
  6606. getUint8 = 0
  6607. getInt16 = 0
  6608. getUint16 = 0
  6609. getInt32 = 0
  6610. getUint32 = 0
  6611. getFloat32 = 0
  6612. getFloat64 = 0
  6613. set little endian value offset 7 value 0 method setUint32
  6614. results of little endian reads are:
  6615. getInt8 = 0
  6616. getUint8 = 0
  6617. getInt16 = 0
  6618. getUint16 = 0
  6619. getInt32 = 0
  6620. getUint32 = 0
  6621. getFloat32 = 0
  6622. getFloat64 = 0
  6623. results of big endian reads are:
  6624. getInt8 = 0
  6625. getUint8 = 0
  6626. getInt16 = 0
  6627. getUint16 = 0
  6628. getInt32 = 0
  6629. getUint32 = 0
  6630. getFloat32 = 0
  6631. getFloat64 = 0
  6632. set little endian value offset 7 value 0 method setUint32
  6633. results of little endian reads are:
  6634. getInt8 = 0
  6635. getUint8 = 0
  6636. getInt16 = 0
  6637. getUint16 = 0
  6638. getInt32 = 0
  6639. getUint32 = 0
  6640. getFloat32 = 0
  6641. getFloat64 = 0
  6642. results of big endian reads are:
  6643. getInt8 = 0
  6644. getUint8 = 0
  6645. getInt16 = 0
  6646. getUint16 = 0
  6647. getInt32 = 0
  6648. getUint32 = 0
  6649. getFloat32 = 0
  6650. getFloat64 = 0
  6651. set little endian value offset 7 value 0 method setFloat32
  6652. results of little endian reads are:
  6653. getInt8 = 0
  6654. getUint8 = 0
  6655. getInt16 = 0
  6656. getUint16 = 0
  6657. getInt32 = 0
  6658. getUint32 = 0
  6659. getFloat32 = 0
  6660. getFloat64 = 0
  6661. results of big endian reads are:
  6662. getInt8 = 0
  6663. getUint8 = 0
  6664. getInt16 = 0
  6665. getUint16 = 0
  6666. getInt32 = 0
  6667. getUint32 = 0
  6668. getFloat32 = 0
  6669. getFloat64 = 0
  6670. set little endian value offset 7 value 0 method setFloat32
  6671. results of little endian reads are:
  6672. getInt8 = 0
  6673. getUint8 = 0
  6674. getInt16 = 0
  6675. getUint16 = 0
  6676. getInt32 = 0
  6677. getUint32 = 0
  6678. getFloat32 = 0
  6679. getFloat64 = 0
  6680. results of big endian reads are:
  6681. getInt8 = 0
  6682. getUint8 = 0
  6683. getInt16 = 0
  6684. getUint16 = 0
  6685. getInt32 = 0
  6686. getUint32 = 0
  6687. getFloat32 = 0
  6688. getFloat64 = 0
  6689. set little endian value offset 7 value 0 method setFloat64
  6690. results of little endian reads are:
  6691. getInt8 = 0
  6692. getUint8 = 0
  6693. getInt16 = 0
  6694. getUint16 = 0
  6695. getInt32 = 0
  6696. getUint32 = 0
  6697. getFloat32 = 0
  6698. getFloat64 = 0
  6699. results of big endian reads are:
  6700. getInt8 = 0
  6701. getUint8 = 0
  6702. getInt16 = 0
  6703. getUint16 = 0
  6704. getInt32 = 0
  6705. getUint32 = 0
  6706. getFloat32 = 0
  6707. getFloat64 = 0
  6708. set little endian value offset 7 value 0 method setFloat64
  6709. results of little endian reads are:
  6710. getInt8 = 0
  6711. getUint8 = 0
  6712. getInt16 = 0
  6713. getUint16 = 0
  6714. getInt32 = 0
  6715. getUint32 = 0
  6716. getFloat32 = 0
  6717. getFloat64 = 0
  6718. results of big endian reads are:
  6719. getInt8 = 0
  6720. getUint8 = 0
  6721. getInt16 = 0
  6722. getUint16 = 0
  6723. getInt32 = 0
  6724. getUint32 = 0
  6725. getFloat32 = 0
  6726. getFloat64 = 0
  6727. set little endian value offset 8 value 0 method setInt8
  6728. results of little endian reads are:
  6729. getInt8 = 0
  6730. getUint8 = 0
  6731. getInt16 = 0
  6732. getUint16 = 0
  6733. getInt32 = 0
  6734. getUint32 = 0
  6735. getFloat32 = 0
  6736. getFloat64 = 0
  6737. results of big endian reads are:
  6738. getInt8 = 0
  6739. getUint8 = 0
  6740. getInt16 = 0
  6741. getUint16 = 0
  6742. getInt32 = 0
  6743. getUint32 = 0
  6744. getFloat32 = 0
  6745. getFloat64 = 0
  6746. set little endian value offset 8 value 0 method setInt8
  6747. results of little endian reads are:
  6748. getInt8 = 0
  6749. getUint8 = 0
  6750. getInt16 = 0
  6751. getUint16 = 0
  6752. getInt32 = 0
  6753. getUint32 = 0
  6754. getFloat32 = 0
  6755. getFloat64 = 0
  6756. results of big endian reads are:
  6757. getInt8 = 0
  6758. getUint8 = 0
  6759. getInt16 = 0
  6760. getUint16 = 0
  6761. getInt32 = 0
  6762. getUint32 = 0
  6763. getFloat32 = 0
  6764. getFloat64 = 0
  6765. set little endian value offset 8 value 0 method setUint8
  6766. results of little endian reads are:
  6767. getInt8 = 0
  6768. getUint8 = 0
  6769. getInt16 = 0
  6770. getUint16 = 0
  6771. getInt32 = 0
  6772. getUint32 = 0
  6773. getFloat32 = 0
  6774. getFloat64 = 0
  6775. results of big endian reads are:
  6776. getInt8 = 0
  6777. getUint8 = 0
  6778. getInt16 = 0
  6779. getUint16 = 0
  6780. getInt32 = 0
  6781. getUint32 = 0
  6782. getFloat32 = 0
  6783. getFloat64 = 0
  6784. set little endian value offset 8 value 0 method setUint8
  6785. results of little endian reads are:
  6786. getInt8 = 0
  6787. getUint8 = 0
  6788. getInt16 = 0
  6789. getUint16 = 0
  6790. getInt32 = 0
  6791. getUint32 = 0
  6792. getFloat32 = 0
  6793. getFloat64 = 0
  6794. results of big endian reads are:
  6795. getInt8 = 0
  6796. getUint8 = 0
  6797. getInt16 = 0
  6798. getUint16 = 0
  6799. getInt32 = 0
  6800. getUint32 = 0
  6801. getFloat32 = 0
  6802. getFloat64 = 0
  6803. set little endian value offset 8 value 0 method setInt16
  6804. results of little endian reads are:
  6805. getInt8 = 0
  6806. getUint8 = 0
  6807. getInt16 = 0
  6808. getUint16 = 0
  6809. getInt32 = 0
  6810. getUint32 = 0
  6811. getFloat32 = 0
  6812. getFloat64 = 0
  6813. results of big endian reads are:
  6814. getInt8 = 0
  6815. getUint8 = 0
  6816. getInt16 = 0
  6817. getUint16 = 0
  6818. getInt32 = 0
  6819. getUint32 = 0
  6820. getFloat32 = 0
  6821. getFloat64 = 0
  6822. set little endian value offset 8 value 0 method setInt16
  6823. results of little endian reads are:
  6824. getInt8 = 0
  6825. getUint8 = 0
  6826. getInt16 = 0
  6827. getUint16 = 0
  6828. getInt32 = 0
  6829. getUint32 = 0
  6830. getFloat32 = 0
  6831. getFloat64 = 0
  6832. results of big endian reads are:
  6833. getInt8 = 0
  6834. getUint8 = 0
  6835. getInt16 = 0
  6836. getUint16 = 0
  6837. getInt32 = 0
  6838. getUint32 = 0
  6839. getFloat32 = 0
  6840. getFloat64 = 0
  6841. set little endian value offset 8 value 0 method setUint16
  6842. results of little endian reads are:
  6843. getInt8 = 0
  6844. getUint8 = 0
  6845. getInt16 = 0
  6846. getUint16 = 0
  6847. getInt32 = 0
  6848. getUint32 = 0
  6849. getFloat32 = 0
  6850. getFloat64 = 0
  6851. results of big endian reads are:
  6852. getInt8 = 0
  6853. getUint8 = 0
  6854. getInt16 = 0
  6855. getUint16 = 0
  6856. getInt32 = 0
  6857. getUint32 = 0
  6858. getFloat32 = 0
  6859. getFloat64 = 0
  6860. set little endian value offset 8 value 0 method setUint16
  6861. results of little endian reads are:
  6862. getInt8 = 0
  6863. getUint8 = 0
  6864. getInt16 = 0
  6865. getUint16 = 0
  6866. getInt32 = 0
  6867. getUint32 = 0
  6868. getFloat32 = 0
  6869. getFloat64 = 0
  6870. results of big endian reads are:
  6871. getInt8 = 0
  6872. getUint8 = 0
  6873. getInt16 = 0
  6874. getUint16 = 0
  6875. getInt32 = 0
  6876. getUint32 = 0
  6877. getFloat32 = 0
  6878. getFloat64 = 0
  6879. set little endian value offset 8 value 0 method setInt32
  6880. results of little endian reads are:
  6881. getInt8 = 0
  6882. getUint8 = 0
  6883. getInt16 = 0
  6884. getUint16 = 0
  6885. getInt32 = 0
  6886. getUint32 = 0
  6887. getFloat32 = 0
  6888. getFloat64 = 0
  6889. results of big endian reads are:
  6890. getInt8 = 0
  6891. getUint8 = 0
  6892. getInt16 = 0
  6893. getUint16 = 0
  6894. getInt32 = 0
  6895. getUint32 = 0
  6896. getFloat32 = 0
  6897. getFloat64 = 0
  6898. set little endian value offset 8 value 0 method setInt32
  6899. results of little endian reads are:
  6900. getInt8 = 0
  6901. getUint8 = 0
  6902. getInt16 = 0
  6903. getUint16 = 0
  6904. getInt32 = 0
  6905. getUint32 = 0
  6906. getFloat32 = 0
  6907. getFloat64 = 0
  6908. results of big endian reads are:
  6909. getInt8 = 0
  6910. getUint8 = 0
  6911. getInt16 = 0
  6912. getUint16 = 0
  6913. getInt32 = 0
  6914. getUint32 = 0
  6915. getFloat32 = 0
  6916. getFloat64 = 0
  6917. set little endian value offset 8 value 0 method setUint32
  6918. results of little endian reads are:
  6919. getInt8 = 0
  6920. getUint8 = 0
  6921. getInt16 = 0
  6922. getUint16 = 0
  6923. getInt32 = 0
  6924. getUint32 = 0
  6925. getFloat32 = 0
  6926. getFloat64 = 0
  6927. results of big endian reads are:
  6928. getInt8 = 0
  6929. getUint8 = 0
  6930. getInt16 = 0
  6931. getUint16 = 0
  6932. getInt32 = 0
  6933. getUint32 = 0
  6934. getFloat32 = 0
  6935. getFloat64 = 0
  6936. set little endian value offset 8 value 0 method setUint32
  6937. results of little endian reads are:
  6938. getInt8 = 0
  6939. getUint8 = 0
  6940. getInt16 = 0
  6941. getUint16 = 0
  6942. getInt32 = 0
  6943. getUint32 = 0
  6944. getFloat32 = 0
  6945. getFloat64 = 0
  6946. results of big endian reads are:
  6947. getInt8 = 0
  6948. getUint8 = 0
  6949. getInt16 = 0
  6950. getUint16 = 0
  6951. getInt32 = 0
  6952. getUint32 = 0
  6953. getFloat32 = 0
  6954. getFloat64 = 0
  6955. set little endian value offset 8 value 0 method setFloat32
  6956. results of little endian reads are:
  6957. getInt8 = 0
  6958. getUint8 = 0
  6959. getInt16 = 0
  6960. getUint16 = 0
  6961. getInt32 = 0
  6962. getUint32 = 0
  6963. getFloat32 = 0
  6964. getFloat64 = 0
  6965. results of big endian reads are:
  6966. getInt8 = 0
  6967. getUint8 = 0
  6968. getInt16 = 0
  6969. getUint16 = 0
  6970. getInt32 = 0
  6971. getUint32 = 0
  6972. getFloat32 = 0
  6973. getFloat64 = 0
  6974. set little endian value offset 8 value 0 method setFloat32
  6975. results of little endian reads are:
  6976. getInt8 = 0
  6977. getUint8 = 0
  6978. getInt16 = 0
  6979. getUint16 = 0
  6980. getInt32 = 0
  6981. getUint32 = 0
  6982. getFloat32 = 0
  6983. getFloat64 = 0
  6984. results of big endian reads are:
  6985. getInt8 = 0
  6986. getUint8 = 0
  6987. getInt16 = 0
  6988. getUint16 = 0
  6989. getInt32 = 0
  6990. getUint32 = 0
  6991. getFloat32 = 0
  6992. getFloat64 = 0
  6993. set little endian value offset 8 value 0 method setFloat64
  6994. results of little endian reads are:
  6995. getInt8 = 0
  6996. getUint8 = 0
  6997. getInt16 = 0
  6998. getUint16 = 0
  6999. getInt32 = 0
  7000. getUint32 = 0
  7001. getFloat32 = 0
  7002. getFloat64 = 0
  7003. results of big endian reads are:
  7004. getInt8 = 0
  7005. getUint8 = 0
  7006. getInt16 = 0
  7007. getUint16 = 0
  7008. getInt32 = 0
  7009. getUint32 = 0
  7010. getFloat32 = 0
  7011. getFloat64 = 0
  7012. set little endian value offset 8 value 0 method setFloat64
  7013. results of little endian reads are:
  7014. getInt8 = 0
  7015. getUint8 = 0
  7016. getInt16 = 0
  7017. getUint16 = 0
  7018. getInt32 = 0
  7019. getUint32 = 0
  7020. getFloat32 = 0
  7021. getFloat64 = 0
  7022. results of big endian reads are:
  7023. getInt8 = 0
  7024. getUint8 = 0
  7025. getInt16 = 0
  7026. getUint16 = 0
  7027. getInt32 = 0
  7028. getUint32 = 0
  7029. getFloat32 = 0
  7030. getFloat64 = 0
  7031. set little endian value offset 9 value 0 method setInt8
  7032. results of little endian reads are:
  7033. getInt8 = 0
  7034. getUint8 = 0
  7035. getInt16 = 0
  7036. getUint16 = 0
  7037. getInt32 = 0
  7038. getUint32 = 0
  7039. getFloat32 = 0
  7040. ----------------------------
  7041. exit code: -11
  7042. [0.12918] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/Int8Array2.js
  7043. [0.141744] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/UInt8Array2.js
  7044. [0.129272] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/Int16Array2.js
  7045. [0.132545] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/UInt16Array2.js
  7046. [0.183953] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/Int32Array2.js
  7047. [0.136893] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/UInt32Array2.js
  7048. [0.142259] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/Float32Array2.js
  7049. [0.14743] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/Float64Array2.js
  7050. [0.13438] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/subarray.js
  7051. [0.057977] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/dataview1.js
  7052. [19.980469] Failed -> /home/gonzo/Github/ChakraCore/test/typedarray/allocation.js
  7053. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/typedarray/allocation.js
  7054. Output:
  7055. ----------------------------
  7056. ----------------------------
  7057. exit code: -9
  7058. [8.194424] Failed -> /home/gonzo/Github/ChakraCore/test/typedarray/allocation2.js
  7059. /home/gonzo/Github/ChakraCore/BuildLinux/ch -WERExceptionSupport -ExtendedErrorStackForTestHost -maxInterpretCount:1 -maxSimpleJitRunCount:1 -bgjit- /home/gonzo/Github/ChakraCore/test/typedarray/allocation2.js
  7060. Output:
  7061. ----------------------------
  7062. ----------------------------
  7063. exit code: -9
  7064. [0.132263] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/typedArrayProfile.js
  7065. [0.020699] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/pixelArrayRounding.js
  7066. [0.02049] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/pixelArrayRounding.js
  7067. [0.015414] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/cseTypedArray.js
  7068. [0.154576] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/Uint8ClampedArray.js
  7069. [0.029409] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/setDifferentTypes.js
  7070. [0.017881] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/bug2230916.js
  7071. [0.01609] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/bug2268573.js
  7072. [0.030179] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/bug_4653428.js
  7073. [0.021294] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/transfer.js
  7074. [0.02187] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/memset.js
  7075. [0.012812] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/memset_neg.js
  7076. [0.027931] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/memcopy.js
  7077. [0.018892] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/memcopy_negative.js
  7078. [0.02308] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/typedarray_bugfixes.js
  7079. [0.013447] Passed -> /home/gonzo/Github/ChakraCore/test/typedarray/bug_OS_6911900.js
  7080. [0.029118] Passed -> /home/gonzo/Github/ChakraCore/test/utf8/invalidutf8.js
  7081. [0.01454] Passed -> /home/gonzo/Github/ChakraCore/test/utf8/unicode_digit_as_identifier_should_work.js
  7082. [0.016268] Passed -> /home/gonzo/Github/ChakraCore/test/utf8/surrogatepair.js
  7083. ######## Logs for interpreted variant ########
  7084. Array: passed 98, failed 7
  7085. Basics: passed 52, failed 0
  7086. Boolean: passed 5, failed 0
  7087. Bugs: passed 37, failed 4
  7088. Closures: passed 16, failed 1
  7089. ControlFlow: passed 17, failed 0
  7090. Conversions: passed 5, failed 0
  7091. Date: passed 3, failed 9
  7092. Debugger: passed 0, failed 8
  7093. DynamicCode: passed 1, failed 0
  7094. EH: passed 17, failed 0
  7095. Error: passed 15, failed 1
  7096. Function: passed 53, failed 6
  7097. GlobalFunctions: passed 11, failed 2
  7098. InlineCaches: passed 21, failed 0
  7099. JSON: passed 9, failed 1
  7100. LetConst: passed 58, failed 2
  7101. Lib: passed 10, failed 0
  7102. Math: passed 20, failed 1
  7103. Miscellaneous: passed 4, failed 1
  7104. Number: passed 8, failed 0
  7105. Object: passed 48, failed 1
  7106. Operators: passed 28, failed 1
  7107. Prototypes: passed 7, failed 0
  7108. RWC: passed 1, failed 0
  7109. Regex: passed 31, failed 2
  7110. SIMD.TypeSpec: passed 0, failed 24
  7111. SIMD.float32x4: passed 0, failed 39
  7112. SIMD.int32x4: passed 0, failed 41
  7113. SIMD.int8x16: passed 0, failed 36
  7114. StackTrace: passed 17, failed 0
  7115. Strings: passed 35, failed 2
  7116. TaggedIntegers: passed 23, failed 0
  7117. UnifiedRegex: passed 22, failed 1
  7118. UnitTestFramework: passed 1, failed 0
  7119. VT_DATE: passed 0, failed 1
  7120. es5: passed 49, failed 5
  7121. es6: passed 149, failed 35
  7122. es7: passed 7, failed 4
  7123. fieldopts: passed 106, failed 12
  7124. loop: passed 6, failed 0
  7125. strict: passed 102, failed 3
  7126. switchStatement: passed 24, failed 0
  7127. typedarray: passed 42, failed 5
  7128. utf8: passed 3, failed 0
  7129. ----------------------------
  7130. Total: passed 1161, failed 255
  7131. [0:01:46.443846] Failed!