123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146822025-03-12 19:53.22: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/pull/321/head (08331695a43f22fc874cd71cbf5796af7716c807) (macos-x86_64:macos-homebrew-4.14_opam-2.3) Base: macos-homebrew-ocaml-4.14 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-multicore/picos.git" && cd "picos" && git fetch origin "refs/pull/321/head" && git reset --hard 08331695 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM macos-homebrew-ocaml-4.14 # macos-homebrew-4.14_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" RUN ln -f ~/local/bin/opam-2.3 ~/local/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version RUN cd ~/opam-repository && (git cat-file -e 3a07c5ca803c46e8ff2d2c9842211cf9a226c774 || git fetch origin master) && git reset -q --hard 3a07c5ca803c46e8ff2d2c9842211cf9a226c774 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam ./src/./ RUN opam pin add -yn picos_std.dev './src/./' && \ opam pin add -yn picos_mux.dev './src/./' && \ opam pin add -yn picos_meta.dev './src/./' && \ opam pin add -yn picos_lwt.dev './src/./' && \ opam pin add -yn picos_io_cohttp.dev './src/./' && \ opam pin add -yn picos_io.dev './src/./' && \ opam pin add -yn picos_aux.dev './src/./' && \ opam pin add -yn picos.dev './src/./' RUN echo '(lang dune 3.0)' > './src/./dune-project' ENV DEPS="alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.0 cohttp-lwt.6.1.0 cohttp-lwt-unix.6.1.0 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.0 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.7.0 lwt.5.9.0 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.24 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.8 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.5 yojson.2.2.2 zarith.1.14" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . ./src RUN cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-03-12 19:53.22: Using cache hint "ocaml-multicore/picos-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_opam-2.3-7a32f8bd5862762a50fe88a4a3f12dcc" 2025-03-12 19:53.22: Using OBuilder spec: ((from macos-homebrew-ocaml-4.14) (comment macos-homebrew-4.14_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 3a07c5ca803c46e8ff2d2c9842211cf9a226c774 || git fetch origin master) && git reset -q --hard 3a07c5ca803c46e8ff2d2c9842211cf9a226c774 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam) (dst ./src/./)) (run (network host) (shell "opam pin add -yn picos_std.dev './src/./' && \ \nopam pin add -yn picos_mux.dev './src/./' && \ \nopam pin add -yn picos_meta.dev './src/./' && \ \nopam pin add -yn picos_lwt.dev './src/./' && \ \nopam pin add -yn picos_io_cohttp.dev './src/./' && \ \nopam pin add -yn picos_io.dev './src/./' && \ \nopam pin add -yn picos_aux.dev './src/./' && \ \nopam pin add -yn picos.dev './src/./'")) (run (network host) (shell "echo '(lang dune 3.0)' > './src/./dune-project'")) (env DEPS "alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.0 cohttp-lwt.6.1.0 cohttp-lwt-unix.6.1.0 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.0 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.7.0 lwt.5.9.0 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.24 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.8 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.5 yojson.2.2.2 zarith.1.14") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS")) (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst ./src)) (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build")) ) 2025-03-12 19:53.22: Waiting for resource in pool OCluster 2025-03-13 11:10.38: Waiting for worker… 2025-03-13 15:59.08: Got resource from pool OCluster Building on i7-worker-04 All commits already cached HEAD is now at 0833169 Add bounded blocking `Stack` (from macos-homebrew-ocaml-4.14) 2025-03-13 15:59.09 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache /: (comment macos-homebrew-4.14_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam")) 2025-03-13 15:59.09 ---> using "d185bb362ab7a62e22c76fe28c4578fe7a4e17f7cc7bc09a3073972dfb5efd3b" from cache /: (run (shell "opam init --reinit -ni")) No configuration file found, using built-in defaults. Checking for available remotes: rsync and local, git. - you won't be able to use mercurial repositories unless you install the hg command on your system. - you won't be able to use darcs repositories unless you install the darcs command on your system. This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted. You may want to back it up before going further. Continue? [y/n] y [NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using: opam option jobs=1 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] no changes from git+file:///Users/mac1000/opam-repository 2025-03-13 15:59.10 ---> using "1a239dab0512a5f76e4948de67b26faca67b4de935df003aa7f81d4e2d68958d" from cache /: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Darwin 23.4.0 The OCaml toplevel, version 4.14.2 2.3.0 2025-03-13 15:59.10 ---> using "f52eecff7be584d99550d2f8c42b8f22f9135c2276c46c827a485f089226c5ac" from cache /: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 3a07c5ca803c46e8ff2d2c9842211cf9a226c774 || git fetch origin master) && git reset -q --hard 3a07c5ca803c46e8ff2d2c9842211cf9a226c774 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 67e940587b..a3d20148ad master -> origin/master 3a07c5ca80 Merge pull request #27604 from dbuenzli/b0-publish-topkg-care.1.0.8-etc-34b29252ad1a6aca <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///Users/mac1000/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). The following packages are not being upgraded because the new versions conflict with other installed packages: - ocaml.5.4.0 - ocaml-config.3 However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-03-13 15:59.11 ---> using "13fa19a52aa6aae7e980e5feda3e1882d5237b99d9ed58e17ac715db857cb02b" from cache /: (copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam) (dst ./src/./)) 2025-03-13 15:59.11 ---> using "8970c38486ff013551eb6a975819945c575505a7a9b99cb3ad2df9d233df7b48" from cache /: (run (network host) (shell "opam pin add -yn picos_std.dev './src/./' && \ \nopam pin add -yn picos_mux.dev './src/./' && \ \nopam pin add -yn picos_meta.dev './src/./' && \ \nopam pin add -yn picos_lwt.dev './src/./' && \ \nopam pin add -yn picos_io_cohttp.dev './src/./' && \ \nopam pin add -yn picos_io.dev './src/./' && \ \nopam pin add -yn picos_aux.dev './src/./' && \ \nopam pin add -yn picos.dev './src/./'")) [picos_std.dev] synchronised (file:///Users/mac1000/src) picos_std is now pinned to file:///Users/mac1000/src (version dev) [picos_mux.dev] synchronised (file:///Users/mac1000/src) picos_mux is now pinned to file:///Users/mac1000/src (version dev) [picos_meta.dev] synchronised (file:///Users/mac1000/src) picos_meta is now pinned to file:///Users/mac1000/src (version dev) [picos_lwt.dev] synchronised (file:///Users/mac1000/src) picos_lwt is now pinned to file:///Users/mac1000/src (version dev) [picos_io_cohttp.dev] synchronised (file:///Users/mac1000/src) picos_io_cohttp is now pinned to file:///Users/mac1000/src (version dev) [picos_io.dev] synchronised (file:///Users/mac1000/src) picos_io is now pinned to file:///Users/mac1000/src (version dev) [picos_aux.dev] synchronised (file:///Users/mac1000/src) picos_aux is now pinned to file:///Users/mac1000/src (version dev) [picos.dev] synchronised (file:///Users/mac1000/src) picos is now pinned to file:///Users/mac1000/src (version dev) 2025-03-13 15:59.12 ---> using "1f1d54b19734e2fa3bbb4c9290daa22d619c7bb81699edd0ee6d222215e250ae" from cache /: (run (network host) (shell "echo '(lang dune 3.0)' > './src/./dune-project'")) 2025-03-13 15:59.13 ---> using "61c06a6d7f34ae05b098db1b7f298f00ef96646437d6dae2e8afecb6096142c2" from cache /: (env DEPS "alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.1.0 cohttp-lwt.6.1.0 cohttp-lwt-unix.6.1.0 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.0 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.7.0 lwt.5.9.0 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.24 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.8 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.5 yojson.2.2.2 zarith.1.14") /: (env CI true) /: (env OCAMLCI true) /: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS")) + /usr/local/bin/brew "update" - ==> Updating Homebrew... - Already up-to-date. <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [picos.dev] synchronised (file:///Users/mac1000/src) [picos_aux.dev] synchronised (file:///Users/mac1000/src) [picos_io.dev] synchronised (file:///Users/mac1000/src) [picos_io_cohttp.dev] synchronised (file:///Users/mac1000/src) [picos_lwt.dev] synchronised (file:///Users/mac1000/src) [picos_meta.dev] synchronised (file:///Users/mac1000/src) [picos_mux.dev] synchronised (file:///Users/mac1000/src) [picos_std.dev] synchronised (file:///Users/mac1000/src) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following system packages will first need to be installed: gmp node pkgconf <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/local/bin/brew "install" "gmp" "node" "pkgconf" - ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json - ==> Fetching gmp - ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:e8410d92339535174e9f4a5eccc403301b70c7287f2f9a87f064a9aa2e21b54b - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8d39e3597db85ea2b4532e0057381937ab6ed92a64a1728c68e57bc6b3aeef95--gmp--6.3.0.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/node/manifests/23.9.0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d26b324d2b8376035cf37fbcacd924b7503646ad556ab39250807b450758f178--node-23.9.0.bottle_manifest.json - ==> Fetching dependencies for node: brotli, c-ares, icu4c@76, libnghttp2, libuv, ca-certificates and openssl@3 - ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-2 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/72b36368116298518fd66e638dfbe8cb541d8db2d33e279683bbdb4b79c73e0d--brotli-1.1.0-2.bottle_manifest.json - ==> Fetching brotli - ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/blobs/sha256:8934e84777d1c6f63d6e4c07213731c9af1b7a66d5f0a6b3ef0bb6d56bb63a86 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4822f8f201cbdc0e3eb6468466e796865c20a2c0cd1a7244ef39c3b88482e895--brotli--1.1.0.sonoma.bottle.2.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/c-ares/manifests/1.34.4 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ce18ea81ad6f8aa82ed3f311879deb7643a3d71e18776db6bc86995282d330f3--c-ares-1.34.4.bottle_manifest.json - ==> Fetching c-ares - ==> Downloading https://ghcr.io/v2/homebrew/core/c-ares/blobs/sha256:81825f7f6a7a5d3f449535c1fb6242a3372c435c93db3f042fae96d2c4abe119 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4b94f70de61cb0ab40067336219ef5a14cb1d0bcbae835e1f8e27e135ffb162e--c-ares--1.34.4.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/76/manifests/76.1_1 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c105f8980d3a6b0ff0253b47492e886520580406ee75fa52509cf5b251b4d633--icu4c@76-76.1_1.bottle_manifest.json - ==> Fetching icu4c@76 - ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/76/blobs/sha256:f7e042054dd71e1167f8c93bd64d817def4c229772a897de0e905e1566985fef - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/9831489bbf544c43f9855e7d134e660c44457b43036316b06410d0a8be896c57--icu4c@76--76.1_1.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.65.0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/5a72fb9f57dd728c5d6d30917849ae15111c3b440595f5694738ec9434c12427--libnghttp2-1.65.0.bottle_manifest.json - ==> Fetching libnghttp2 - ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/blobs/sha256:523994aa28f56be6c23161889273d48ce9a964acfe3517768c41cf46359e27e8 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/191d95acdc4141c166b592449043fb072918e1ddf7c8be5f54ed89c72b0f617f--libnghttp2--1.65.0.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/manifests/1.50.0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ca8434864835c568bb3ff09b90797e9c2b745beacbd73320a6c22611a4fd1b56--libuv-1.50.0.bottle_manifest.json - ==> Fetching libuv - ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/blobs/sha256:50124229722199f08735d93a315c1a8678e19635eb31099331e608856870dd54 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d14b0d4e8a201c3fbdcb31efb4a8b145fa30e78ae027c0844512155015f0c4a1--libuv--1.50.0.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-02-25 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6c1debb525d4dc6007afae4cd2b772105111632b22fc28506550f6dfe27c6d52--ca-certificates-2025-02-25.bottle_manifest.json - ==> Fetching ca-certificates - ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:8f46fb05f753f80f2bc398c0a24b10d680bd77d496e2b931de0b61998e37aebc - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/50c52ec06796c09a75e7a9484e6db3205765a935a486322e3795612fd23b405e--ca-certificates--2025-02-25.all.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.4.1 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a2bb8b71ebddb1fe8553581fcbc1ffc4ab36795c68b3cd47977cf83f1673a5b1--openssl@3-3.4.1.bottle_manifest.json - ==> Fetching openssl@3 - ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:36a85e5161befce49de6e03c5f710987bd5778a321151e011999e766249e6447 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/aa344417cbea89911f20a2d859f333f09b697b226b94f94a7754846085b7eb9b--openssl@3--3.4.1.sonoma.bottle.tar.gz - ==> Fetching node - ==> Downloading https://ghcr.io/v2/homebrew/core/node/blobs/sha256:a5dd17ffbbb098060620a34d8ea48317122f10e1d14aca2d90e1b229eaf1ef5b - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/87e11163cc6799ea98e9b242ae630cabe56ca6aab94455fdbc203ef7202439a6--node--23.9.0.sonoma.bottle.tar.gz - ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/manifests/2.4.3 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/fab16e95d8f8b37343099cee3d239d301193b2bca2db019c3db5708669e94417--pkgconf-2.4.3.bottle_manifest.json - ==> Fetching pkgconf - ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/blobs/sha256:9f5e12ea8ab25db6afc5c09543d6840d72f6556b894d167ac79007e8f187feb0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/579526238d04ef568632db944c33c6149c2e05766a0384acc59429a4bdf99eba--pkgconf--2.4.3.sonoma.bottle.tar.gz - ==> Pouring gmp--6.3.0.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/gmp/6.3.0: 22 files, 3.3MB - ==> Running `brew cleanup gmp`... - Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP. - Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). - ==> Installing dependencies for node: brotli, c-ares, icu4c@76, libnghttp2, libuv, ca-certificates and openssl@3 - ==> Installing node dependency: brotli - ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-2 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/72b36368116298518fd66e638dfbe8cb541d8db2d33e279683bbdb4b79c73e0d--brotli-1.1.0-2.bottle_manifest.json - ==> Pouring brotli--1.1.0.sonoma.bottle.2.tar.gz - 🍺 /usr/local/Cellar/brotli/1.1.0: 28 files, 1.6MB - ==> Installing node dependency: c-ares - ==> Downloading https://ghcr.io/v2/homebrew/core/c-ares/manifests/1.34.4 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ce18ea81ad6f8aa82ed3f311879deb7643a3d71e18776db6bc86995282d330f3--c-ares-1.34.4.bottle_manifest.json - ==> Pouring c-ares--1.34.4.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/c-ares/1.34.4: 176 files, 935KB - ==> Installing node dependency: icu4c@76 - ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/76/manifests/76.1_1 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c105f8980d3a6b0ff0253b47492e886520580406ee75fa52509cf5b251b4d633--icu4c@76-76.1_1.bottle_manifest.json - ==> Pouring icu4c@76--76.1_1.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/icu4c@76/76.1_1: 277 files, 79.8MB - ==> Installing node dependency: libnghttp2 - ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.65.0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/5a72fb9f57dd728c5d6d30917849ae15111c3b440595f5694738ec9434c12427--libnghttp2-1.65.0.bottle_manifest.json - ==> Pouring libnghttp2--1.65.0.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/libnghttp2/1.65.0: 14 files, 730.3KB - ==> Installing node dependency: libuv - ==> Downloading https://ghcr.io/v2/homebrew/core/libuv/manifests/1.50.0 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ca8434864835c568bb3ff09b90797e9c2b745beacbd73320a6c22611a4fd1b56--libuv-1.50.0.bottle_manifest.json - ==> Pouring libuv--1.50.0.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/libuv/1.50.0: 20 files, 1.1MB - ==> Installing node dependency: ca-certificates - ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-02-25 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6c1debb525d4dc6007afae4cd2b772105111632b22fc28506550f6dfe27c6d52--ca-certificates-2025-02-25.bottle_manifest.json - ==> Pouring ca-certificates--2025-02-25.all.bottle.tar.gz - ==> Regenerating CA certificate bundle from keychain, this may take a while... - 🍺 /usr/local/Cellar/ca-certificates/2025-02-25: 4 files, 235.4KB - ==> Installing node dependency: openssl@3 - ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.4.1 - Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a2bb8b71ebddb1fe8553581fcbc1ffc4ab36795c68b3cd47977cf83f1673a5b1--openssl@3-3.4.1.bottle_manifest.json - ==> Pouring openssl@3--3.4.1.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/openssl@3/3.4.1: 7,236 files, 33.6MB - ==> Installing node - ==> Pouring node--23.9.0.sonoma.bottle.tar.gz - ==> Caveats - Bash completion has been installed to: - /usr/local/etc/bash_completion.d - ==> Summary - 🍺 /usr/local/Cellar/node/23.9.0: 2,602 files, 72.5MB - ==> Running `brew cleanup node`... - ==> Pouring pkgconf--2.4.3.sonoma.bottle.tar.gz - 🍺 /usr/local/Cellar/pkgconf/2.4.3: 27 files, 339.8KB - ==> Running `brew cleanup pkgconf`... - ==> Caveats - ==> node - Bash completion has been installed to: - /usr/local/etc/bash_completion.d 2025-03-13 15:59.13 ---> using "6eb881d9ccb5ffcf5eafef2f09c3a9711d6363f84b6d12fc39af55544b71dde6" from cache /: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following actions will be performed: === install 98 packages - install alcotest 1.8.0 - install angstrom 0.16.1 - install asn1-combinators 0.3.2 - install astring 0.8.5 - install backoff 0.1.1 - install base v0.16.3 - install base-bytes base - install base64 3.5.1 - install bigstringaf 0.10.0 - install bos 0.2.1 - install ca-certs 1.0.0 - install camlp-streams 5.0.1 - install cmdliner 1.3.0 - install cohttp 6.1.0 - install cohttp-lwt 6.1.0 - install cohttp-lwt-unix 6.1.0 - install conduit 8.0.0 - install conduit-lwt 8.0.0 - install conduit-lwt-unix 8.0.0 - install conf-bash 1 - install conf-gmp 4 - install conf-gmp-powm-sec 3 - install conf-npm 1 - install conf-pkg-config 4 - install containers 3.15 - install cppo 1.8.0 - install csexp 1.5.2 - install digestif 1.2.0 - install domain-local-await 1.0.1 - install domain-name 0.4.1 - install domain_shims 0.1.0 - install dscheck 0.5.0 - install dune 3.17.2 - install dune-configurator 3.17.2 - install duration 0.2.1 - install either 1.0.0 - install eqaf 0.10 - install fmt 0.10.0 - install fpath 0.7.3 - install gen 1.1 - install gmap 0.3.0 - install http 6.1.0 - install ipaddr 5.6.0 - install ipaddr-sexp 5.6.0 - install js_of_ocaml 6.0.1 - install js_of_ocaml-compiler 6.0.1 - install kdf 1.0.0 - install logs 0.7.0 - install lwt 5.9.0 - install macaddr 5.6.0 - install magic-mime 1.3.1 - install mdx 2.5.0 - install menhir 20240715 - install menhirCST 20240715 - install menhirLib 20240715 - install menhirSdk 20240715 - install mirage-crypto 2.0.0 - install mirage-crypto-ec 2.0.0 - install mirage-crypto-pk 2.0.0 - install mirage-crypto-rng 2.0.0 - install mtime 2.1.0 - install multicore-bench 0.1.7 - install multicore-magic 2.3.1 - install multicore-magic-dscheck 2.3.1 - install ocaml-compiler-libs v0.12.4 - install ocaml-syntax-shims 1.0.0 - install ocaml-version 3.7.3 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ocplib-endian 1.2 - install ohex 0.2.0 - install oseq 0.5.1 - install ppx_derivers 1.2.1 - install ppx_sexp_conv v0.16.0 - install ppxlib 0.35.0 - install psq 0.2.1 - install ptime 1.2.0 - install qcheck-core 0.24 - install qcheck-multicoretests-util 0.7 - install qcheck-stm 0.7 - install re 1.12.0 - install result 1.5 - install rresult 0.7.0 - install sedlex 3.3 - install seq base - install sexplib0 v0.16.0 - install stdlib-shims 0.3.0 - install stringext 1.6.0 - install thread-local-storage 0.2 - install thread-table 1.0.0 - install topkg 1.0.8 - install tsort 2.1.0 - install uri 4.4.0 - install uri-sexp 4.4.0 - install uutf 1.0.4 - install x509 1.0.5 - install yojson 2.2.2 - install zarith 1.14 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved asn1-combinators.0.3.2 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved backoff.0.1.1 (cached) -> retrieved alcotest.1.8.0 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved base.v0.16.3 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved ca-certs.1.0.0 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved conf-gmp.4 (cached) -> retrieved conf-gmp-powm-sec.3 (cached) -> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached) -> installed conf-gmp.4 -> retrieved cppo.1.8.0 (cached) -> installed conf-pkg-config.4 -> retrieved csexp.1.5.2 (cached) -> installed conf-bash.1 -> retrieved containers.3.15 (cached) -> installed conf-gmp-powm-sec.3 -> installed conf-npm.1 -> retrieved cohttp.6.1.0, cohttp-lwt.6.1.0, cohttp-lwt-unix.6.1.0, http.6.1.0 (cached) -> retrieved domain-local-await.1.0.1 (cached) -> retrieved domain-name.0.4.1 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved dscheck.0.5.0 (cached) -> retrieved domain_shims.0.1.0 (cached) -> retrieved duration.0.2.1 (cached) -> retrieved either.1.0.0 (cached) -> retrieved eqaf.0.10 (cached) -> retrieved fmt.0.10.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gen.1.1 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0 (cached) -> retrieved kdf.1.0.0 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lwt.5.9.0 (cached) -> retrieved magic-mime.1.3.1 (cached) -> retrieved mdx.2.5.0 (cached) -> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached) -> retrieved mirage-crypto.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0 (cached) -> retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1 (cached) -> retrieved mtime.2.1.0 (cached) -> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved multicore-magic.2.3.1, multicore-magic-dscheck.2.3.1 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml-version.3.7.3 (cached) -> retrieved multicore-bench.0.1.7 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved oseq.0.5.1 (cached) -> retrieved ohex.0.2.0 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ppx_sexp_conv.v0.16.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved psq.0.2.1 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved qcheck-core.0.24 (cached) -> installed cmdliner.1.3.0 -> retrieved qcheck-multicoretests-util.0.7, qcheck-stm.0.7 (cached) -> retrieved re.1.12.0 (cached) -> retrieved result.1.5 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved sedlex.3.3 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> retrieved thread-local-storage.0.2 (cached) -> retrieved thread-table.1.0.0 (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved tsort.2.1.0 (cached) -> retrieved topkg.1.0.8 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached) -> retrieved zarith.1.14 (cached) -> retrieved x509.1.0.5 (cached) -> retrieved yojson.2.2.2 (cached) -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed ocamlbuild.0.16.1 -> installed zarith.1.14 -> installed topkg.1.0.8 -> installed rresult.0.7.0 -> installed uutf.1.0.4 -> installed mtime.2.1.0 -> installed ptime.1.2.0 -> installed fmt.0.10.0 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed dune.3.17.2 -> installed duration.0.2.1 -> installed domain_shims.0.1.0 -> installed csexp.1.5.2 -> installed domain-name.0.4.1 -> installed http.6.1.0 -> installed gmap.0.3.0 -> installed gen.1.1 -> installed eqaf.0.10 -> installed either.1.0.0 -> installed cppo.1.8.0 -> installed camlp-streams.5.0.1 -> installed base64.3.5.1 -> installed backoff.0.1.1 -> installed asn1-combinators.0.3.2 -> installed macaddr.5.6.0 -> installed menhirCST.20240715 -> installed multicore-magic.2.3.1 -> installed ocaml-version.3.7.3 -> installed menhirSdk.20240715 -> installed ocaml-syntax-shims.1.0.0 -> installed ocaml-compiler-libs.v0.12.4 -> installed ocplib-endian.1.2 -> installed menhirLib.20240715 -> installed ohex.0.2.0 -> installed ppx_derivers.1.2.1 -> installed psq.0.2.1 -> installed oseq.0.5.1 -> installed ipaddr.5.6.0 -> installed result.1.5 -> installed digestif.1.2.0 -> installed magic-mime.1.3.1 -> installed dune-configurator.3.17.2 -> installed stdlib-shims.0.3.0 -> installed stringext.1.6.0 -> installed tsort.2.1.0 -> installed thread-table.1.0.0 -> installed thread-local-storage.0.2 -> installed bigstringaf.0.10.0 -> installed sexplib0.v0.16.0 -> installed domain-local-await.1.0.1 -> installed qcheck-core.0.24 -> installed re.1.12.0 -> installed angstrom.0.16.1 -> installed yojson.2.2.2 -> installed qcheck-multicoretests-util.0.7 -> installed mirage-crypto.2.0.0 -> installed qcheck-stm.0.7 -> installed multicore-bench.0.1.7 -> installed kdf.1.0.0 -> installed alcotest.1.8.0 -> installed containers.3.15 -> installed dscheck.0.5.0 -> installed multicore-magic-dscheck.2.3.1 -> installed uri.4.4.0 -> installed lwt.5.9.0 -> installed base.v0.16.3 -> installed ppxlib.0.35.0 -> installed menhir.20240715 -> installed sedlex.3.3 -> installed ppx_sexp_conv.v0.16.0 -> installed uri-sexp.4.4.0 -> installed ipaddr-sexp.5.6.0 -> installed js_of_ocaml-compiler.6.0.1 -> installed js_of_ocaml.6.0.1 -> installed logs.0.7.0 -> installed mirage-crypto-rng.2.0.0 -> installed conduit.8.0.0 -> installed cohttp.6.1.0 -> installed mirage-crypto-pk.2.0.0 -> installed conduit-lwt.8.0.0 -> installed mdx.2.5.0 -> installed bos.0.2.1 -> installed cohttp-lwt.6.1.0 -> installed mirage-crypto-ec.2.0.0 -> installed x509.1.0.5 -> installed ca-certs.1.0.0 -> installed conduit-lwt-unix.8.0.0 -> installed cohttp-lwt-unix.6.1.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-13 15:59.14 ---> using "072c24f9445ff744f1ca72d06063ec3b75fd0b1eccf6e34dee3537081eba0455" from cache /: (copy (src .) (dst ./src)) 2025-03-13 15:59.16 ---> saved as "49c24fd6a075f7b16acd3f5bac83b1c20ea2890d7133a356dad07f2482a0e631" /: (run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default/test && ./test_mpscq.exe) random seed: 3789802916042813517 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mpscq sequential [ ] 0 0 0 0 / 32 0.0s Mpscq sequential (generating) [✓] 32 0 0 32 / 32 0.0s Mpscq sequential ================================================================================ success (ran 1 tests) random seed: 787883548028825794 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Mpscq sequential [✓] 64 0 0 64 / 64 0.0s Mpscq sequential ================================================================================ success (ran 1 tests) random seed: 2079378227806310794 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Mpscq sequential [✓] 128 0 0 128 / 128 0.0s Mpscq sequential ================================================================================ success (ran 1 tests) random seed: 1233593660995516523 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Mpscq sequential [✓] 256 0 0 256 / 256 0.0s Mpscq sequential ================================================================================ success (ran 1 tests) random seed: 2892500117790188193 generated error fail pass / total time test name [ ] 0 0 0 0 / 512 0.0s Mpscq sequential [✓] 512 0 0 512 / 512 0.0s Mpscq sequential ================================================================================ success (ran 1 tests) random seed: 4361917292964677298 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mpscq sequential [✓] 32 0 0 32 / 32 0.0s Mpscq sequential ================================================================================ success (ran 1 tests) (cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 0) Testing `Picos_sync'. This run has ID `CR0FSO55'. [OK] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.009s. 1 test run. (cd _build/default/test && ./test_server_and_client.exe) Using blocking sockets and threads on OCaml 4: Looping server running Server listening Server accepting Client B running Client A running Client A connected Client A wrote 100 Server accepted client Server accepting Client B connected Server accepted client Server accepting Client B wrote 100 Server read 100 Server read 100 Server wrote 50 Server wrote 50 Client A read 50 Client B read 50 Server and Client test: OK (cd _build/default/test && ./test_picos.exe) Testing `Picos'. This run has ID `UXNSFZLO'. [OK] Trigger 0 basics. [OK] Computation 0 basics. [OK] Computation 1 tx. [OK] Computation 2 signals in order. [OK] Fiber.FLS 0 basics. [OK] Cancel 0 [OK] Cancel after 0 Full test results in `~/src/_build/default/test/_build/_tests/Picos'. Test Successful in 0.618s. 7 tests run. (cd _build/default/test && ./test_io.exe) Testing `Picos_io'. This run has ID `2LZSZ0WK'. [OK] Unix 0 openfile and read. [OK] Unix 1 sleepf. [OK] Unix 2 select empty timeout. [OK] Unix 3 select empty ∞. [OK] Unix 4 select. [OK] Unix 5 system. Full test results in `~/src/_build/default/test/_build/_tests/Picos_io'. Test Successful in 0.529s. 6 tests run. (cd _build/default/test && ./test_io_with_lwt.exe) Testing `Picos_io_with_lwt'. This run has ID `T921BZ29'. [OK] Unix 0 system. Full test results in `~/src/_build/default/test/_build/_tests/Picos_io_with_lwt'. Test Successful in 2.077s. 1 test run. (cd _build/default/test && ./test_structured.exe) Testing `Picos_structured'. This run has ID `T9L8WV37'. [OK] Bundle 0 fork after terminate. [OK] Bundle 1 fork after escape. [OK] Bundle 2 exception in child terminates. [OK] Bundle 3 cancelation awaits children. [OK] Bundle 4 block raises when forbidden. [OK] Bundle 5 block raises Sys_error when fiber finishes. [OK] Bundle 6 termination nests. [OK] Bundle 7 promise cancelation does not terminate. [OK] Bundle 8 error in promise terminates. [OK] Bundle 9 can wait promises. [OK] Bundle 10 can select promises. [OK] Run 0 any and all errors. [OK] Run 1 any and all returns. [OK] Run 2 race any. Full test results in `~/src/_build/default/test/_build/_tests/Picos_structured'. Test Successful in 0.745s. 14 tests run. (cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1) Testing `Picos_sync'. This run has ID `G43APF94'. [SKIP] Mutex and Condition 0 basics. [OK] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_io_cohttp.exe) Uri: //127.0.0.1:63463/hello-io-cohttp Method: POST host: 127.0.0.1:63463 user-agent: ocaml-cohttp/v6.1.0 content-length: 17 Body: It's-a-Me, Picos! (cd _build/default/test && ./test_finally.exe) Testing `Picos_finally'. This run has ID `9KLMJL6L'. [OK] move 0 is lazy. [OK] borrow 0 returns resource. Full test results in `~/src/_build/default/test/_build/_tests/Picos_finally'. Test Successful in 0.002s. 2 tests run. (cd _build/default/test && /usr/local/bin/node test_js_of_ocaml.bc.js) Hello, from js_of_ocaml with Picos! (cd _build/default/bench && ./main.exe -brief 'Picos Computation') Picos Computation: attach detach pairs over time/1 worker: 4.56 M/s attach detach pairs over time/trivial: 15.41 M/s time per attach detach pair/1 worker: 219.48 ns time per attach detach pair/trivial: 64.90 ns (cd _build/default/test && ./test_select.exe) Testing `Picos_select'. This run has ID `RRWHLDOT'. [OK] Intr 0 Full test results in `~/src/_build/default/test/_build/_tests/Picos_select'. Test Successful in 5.982s. 1 test run. (cd _build/default/bench && ./main.exe -brief 'Picos Current') Picos Current: ops over time/1 worker: 70.59 M/s time per op/1 worker: 14.17 ns (cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)') Picos FLS (excluding Current): gets over time/1 worker: 143.14 M/s sets over time/1 worker: 67.01 M/s time per get/1 worker: 6.99 ns time per set/1 worker: 14.92 ns (cd _build/default/bench && ./main.exe -brief 'Picos TLS') Picos TLS: gets over time/1 worker: 113.78 M/s sets over time/1 worker: 49.55 M/s time per get/1 worker: 8.79 ns time per set/1 worker: 20.18 ns (cd _build/default/bench && ./main.exe -brief 'Picos DLS') Picos DLS: gets over time/1 worker: 199.04 M/s sets over time/1 worker: 72.50 M/s time per get/1 worker: 5.02 ns time per set/1 worker: 13.79 ns (cd _build/default/bench && ./main.exe -brief 'Yield with Picos_std_sync') Yield with Picos_std_sync: locked yields over time/1 fiber with Lock: 0.04 M/s locked yields over time/1 fiber with Rwlock: 0.03 M/s locked yields over time/1 fiber with Sem: 0.03 M/s locked yields over time/1 fiber with Sem 2: 0.04 M/s locked yields over time/1 fiber with Sem 3: 0.03 M/s locked yields over time/1 fiber with Sem 4: 0.02 M/s locked yields over time/256 fibers with Lock: 0.02 M/s locked yields over time/256 fibers with Rwlock: 0.02 M/s locked yields over time/256 fibers with Sem: 0.02 M/s locked yields over time/256 fibers with Sem 2: 0.02 M/s locked yields over time/256 fibers with Sem 3: 0.02 M/s locked yields over time/256 fibers with Sem 4: 0.02 M/s locked yields over time/2 fibers with Lock: 0.04 M/s locked yields over time/2 fibers with Rwlock: 0.04 M/s locked yields over time/2 fibers with Sem: 0.04 M/s locked yields over time/2 fibers with Sem 2: 0.03 M/s locked yields over time/2 fibers with Sem 3: 0.03 M/s locked yields over time/2 fibers with Sem 4: 0.03 M/s locked yields over time/3 fibers with Lock: 0.05 M/s locked yields over time/3 fibers with Rwlock: 0.03 M/s locked yields over time/3 fibers with Sem: 0.04 M/s locked yields over time/3 fibers with Sem 2: 0.03 M/s locked yields over time/3 fibers with Sem 3: 0.03 M/s locked yields over time/3 fibers with Sem 4: 0.03 M/s locked yields over time/4 fibers with Lock: 0.05 M/s locked yields over time/4 fibers with Rwlock: 0.03 M/s locked yields over time/4 fibers with Sem: 0.04 M/s locked yields over time/4 fibers with Sem 2: 0.03 M/s locked yields over time/4 fibers with Sem 3: 0.03 M/s locked yields over time/4 fibers with Sem 4: 0.02 M/s locked yields over time/8 fibers with Lock: 0.05 M/s locked yields over time/8 fibers with Rwlock: 0.03 M/s locked yields over time/8 fibers with Sem: 0.04 M/s locked yields over time/8 fibers with Sem 2: 0.03 M/s locked yields over time/8 fibers with Sem 3: 0.03 M/s locked yields over time/8 fibers with Sem 4: 0.03 M/s time per locked yield/1 fiber with Lock: 26970.23 ns time per locked yield/1 fiber with Rwlock: 31938.03 ns time per locked yield/1 fiber with Sem: 29533.74 ns time per locked yield/1 fiber with Sem 2: 27926.75 ns time per locked yield/1 fiber with Sem 3: 29553.26 ns time per locked yield/1 fiber with Sem 4: 66093.66 ns time per locked yield/256 fibers with Lock: 62815.67 ns time per locked yield/256 fibers with Rwlock: 58405.96 ns time per locked yield/256 fibers with Sem: 63407.76 ns time per locked yield/256 fibers with Sem 2: 46349.00 ns time per locked yield/256 fibers with Sem 3: 49164.55 ns time per locked yield/256 fibers with Sem 4: 51961.85 ns time per locked yield/2 fibers with Lock: 22540.62 ns time per locked yield/2 fibers with Rwlock: 27716.93 ns time per locked yield/2 fibers with Sem: 25449.14 ns time per locked yield/2 fibers with Sem 2: 29391.19 ns time per locked yield/2 fibers with Sem 3: 33621.67 ns time per locked yield/2 fibers with Sem 4: 39698.26 ns time per locked yield/3 fibers with Lock: 21904.06 ns time per locked yield/3 fibers with Rwlock: 35087.36 ns time per locked yield/3 fibers with Sem: 26106.93 ns time per locked yield/3 fibers with Sem 2: 30679.47 ns time per locked yield/3 fibers with Sem 3: 32257.54 ns time per locked yield/3 fibers with Sem 4: 33066.39 ns time per locked yield/4 fibers with Lock: 20481.44 ns time per locked yield/4 fibers with Rwlock: 37599.54 ns time per locked yield/4 fibers with Sem: 25329.00 ns time per locked yield/4 fibers with Sem 2: 33381.89 ns time per locked yield/4 fibers with Sem 3: 36654.24 ns time per locked yield/4 fibers with Sem 4: 51238.80 ns time per locked yield/8 fibers with Lock: 21606.48 ns time per locked yield/8 fibers with Rwlock: 34058.99 ns time per locked yield/8 fibers with Sem: 26560.12 ns time per locked yield/8 fibers with Sem 2: 30109.99 ns time per locked yield/8 fibers with Sem 3: 29680.11 ns time per locked yield/8 fibers with Sem 4: 34859.25 ns (cd _build/default/bench && ./main.exe -brief 'Picos Spawn') Picos Spawn: (cd _build/default/bench && ./main.exe -brief 'Picos Yield') Picos Yield: time per yield/100 fibers: 21446.45 ns time per yield/10 fibers: 21134.43 ns time per yield/1 fiber: 45765.16 ns yields over time/100 fibers: 0.05 M/s yields over time/10 fibers: 0.05 M/s yields over time/1 fiber: 0.02 M/s (cd _build/default/bench && ./main.exe -brief 'Picos Cancel_after with Picos_select') Picos Cancel_after with Picos_select: async round-trips over time/1 worker: 0.20 M/s round-trips over time/1 worker: 0.01 M/s time per async round-trip/1 worker: 4989.24 ns time per round-trip/1 worker: 70501.06 ns (cd _build/default/bench && ./main.exe -brief 'Ref with Picos_std_sync') Ref with Picos_std_sync: ops over time/cas int with Lock: 27.60 M/s ops over time/cas int with Rwlock: 12.59 M/s ops over time/cas int with Sem: 23.15 M/s ops over time/get with Lock: 36.27 M/s ops over time/get with Rwlock: 39.94 M/s ops over time/get with Sem: 41.39 M/s ops over time/incr with Lock: 38.88 M/s ops over time/incr with Rwlock: 15.99 M/s ops over time/incr with Sem: 40.69 M/s ops over time/push & pop with Lock: 25.36 M/s ops over time/push & pop with Rwlock: 10.00 M/s ops over time/push & pop with Sem: 28.54 M/s ops over time/swap with Lock: 23.70 M/s ops over time/swap with Rwlock: 14.91 M/s ops over time/swap with Sem: 26.06 M/s ops over time/xchg int with Lock: 23.47 M/s ops over time/xchg int with Rwlock: 16.81 M/s ops over time/xchg int with Sem: 23.42 M/s time per op/cas int with Lock: 36.23 ns time per op/cas int with Rwlock: 79.40 ns time per op/cas int with Sem: 43.20 ns time per op/get with Lock: 27.57 ns time per op/get with Rwlock: 25.04 ns time per op/get with Sem: 24.16 ns time per op/incr with Lock: 25.72 ns time per op/incr with Rwlock: 62.52 ns time per op/incr with Sem: 24.58 ns time per op/push & pop with Lock: 39.46 ns time per op/push & pop with Rwlock: 100.05 ns time per op/push & pop with Sem: 35.04 ns time per op/swap with Lock: 42.20 ns time per op/swap with Rwlock: 67.09 ns time per op/swap with Sem: 38.37 ns time per op/xchg int with Lock: 42.62 ns time per op/xchg int with Rwlock: 59.49 ns time per op/xchg int with Sem: 42.80 ns (cd _build/default/bench && ./main.exe -brief Picos_mpmcq) Picos_mpmcq: messages over time/one domain: 14.04 M/s time per message/one domain: 71.43 ns (cd _build/default/bench && ./main.exe -brief Picos_mpscq) Picos_mpscq: messages over time/one domain: 13.58 M/s time per message/one domain: 73.63 ns (cd _build/default/bench && ./main.exe -brief Picos_htbl) Picos_htbl: operations over time/1 worker, 10% reads: 7.75 M/s operations over time/1 worker, 50% reads: 8.82 M/s operations over time/1 worker, 90% reads: 11.23 M/s time per operation/1 worker, 10% reads: 129.08 ns time per operation/1 worker, 50% reads: 113.37 ns time per operation/1 worker, 90% reads: 89.08 ns (cd _build/default/bench && ./main.exe -brief 'Hashtbl with Picos_std_sync') Hashtbl with Picos_std_sync: operations over time/1 worker, 10% reads with Lock: 6.87 M/s operations over time/1 worker, 10% reads with Rwlock: 6.54 M/s operations over time/1 worker, 10% reads with Sem: 5.78 M/s operations over time/1 worker, 100% reads with Lock: 8.59 M/s operations over time/1 worker, 100% reads with Rwlock: 8.54 M/s operations over time/1 worker, 100% reads with Sem: 9.90 M/s operations over time/1 worker, 50% reads with Lock: 7.03 M/s operations over time/1 worker, 50% reads with Rwlock: 7.17 M/s operations over time/1 worker, 50% reads with Sem: 7.53 M/s operations over time/1 worker, 90% reads with Lock: 8.87 M/s operations over time/1 worker, 90% reads with Rwlock: 7.79 M/s operations over time/1 worker, 90% reads with Sem: 9.15 M/s operations over time/1 worker, 95% reads with Lock: 8.85 M/s operations over time/1 worker, 95% reads with Rwlock: 7.22 M/s operations over time/1 worker, 95% reads with Sem: 9.62 M/s time per operation/1 worker, 10% reads with Lock: 145.50 ns time per operation/1 worker, 10% reads with Rwlock: 152.86 ns time per operation/1 worker, 10% reads with Sem: 173.44 ns time per operation/1 worker, 100% reads with Lock: 116.60 ns time per operation/1 worker, 100% reads with Rwlock: 117.08 ns time per operation/1 worker, 100% reads with Sem: 101.04 ns time per operation/1 worker, 50% reads with Lock: 142.51 ns time per operation/1 worker, 50% reads with Rwlock: 139.59 ns time per operation/1 worker, 50% reads with Sem: 132.84 ns time per operation/1 worker, 90% reads with Lock: 112.71 ns time per operation/1 worker, 90% reads with Rwlock: 128.39 ns time per operation/1 worker, 90% reads with Sem: 109.29 ns time per operation/1 worker, 95% reads with Lock: 113.07 ns time per operation/1 worker, 95% reads with Rwlock: 138.43 ns time per operation/1 worker, 95% reads with Sem: 103.98 ns (cd _build/default/bench && ./main.exe -brief Picos_stdio) Picos_stdio: blocking reads over time/1 worker: 0.01 M/s non-blocking reads over time/1 worker: 0.06 M/s time per blocking read/1 worker: 192248.80 ns time per non-blocking read/1 worker: 15711.05 ns (cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream') Picos_sync Stream: messages over time/one domain: 8.14 M/s time per message/one domain: 122.86 ns (cd _build/default/bench && ./main.exe -brief Fib) Fib: (cd _build/default/bench && ./main.exe -brief 'Picos binaries') Picos binaries: binary size/picos: 59.09 kB binary size/picos.domain: 4.73 kB binary size/picos.thread: 2.46 kB binary size/picos_aux.htbl: 41.71 kB binary size/picos_aux.mpmcq: 11.84 kB binary size/picos_aux.mpscq: 13.21 kB binary size/picos_aux.rc: 12.35 kB binary size/picos_io: 67.80 kB binary size/picos_io.fd: 6.51 kB binary size/picos_io.select: 43.38 kB binary size/picos_io_cohttp: 32.74 kB binary size/picos_mux.thread: 16.45 kB binary size/picos_std.awaitable: 24.36 kB binary size/picos_std.event: 16.81 kB binary size/picos_std.finally: 13.37 kB binary size/picos_std.structured: 56.77 kB binary size/picos_std.sync: 138.50 kB (cd _build/default/bench && ./main.exe -brief 'Bounded_q with Picos_std_sync') Bounded_q with Picos_std_sync: messages over time/one domain with Lock: 8.46 M/s time per message/one domain with Lock: 118.27 ns (cd _build/default/bench && ./main.exe -brief 'Memory usage') Memory usage: (cd _build/default/bench && ./main.exe -brief Stack) Stack: messages over time/one domain: 10.20 M/s time per message/one domain: 98.09 ns (cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2) Testing `Picos_sync'. This run has ID `IGLN76NR'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [OK] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 10.072s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0) Testing `Picos_sync'. This run has ID `J8OLWENP'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [OK] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.010s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1) Testing `Picos_sync'. This run has ID `PPQWWKW8'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [OK] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 13.291s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2) Testing `Picos_sync'. This run has ID `2Q4QH1EC'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [OK] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 3) Testing `Picos_sync'. This run has ID `WR049W4N'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [OK] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 0) Testing `Picos_sync'. This run has ID `WDWNEQMO'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [OK] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.012s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1) Testing `Picos_sync'. This run has ID `31O8ZU79'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [OK] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 13.199s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2) Testing `Picos_sync'. This run has ID `2RTGTAMR'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [OK] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.003s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 3) Testing `Picos_sync'. This run has ID `GJGWVFNX'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [OK] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 4) Testing `Picos_sync'. This run has ID `Z9GC9GN5'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [OK] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 5) Testing `Picos_sync'. This run has ID `FWIHLCSM'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [OK] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6) Testing `Picos_sync'. This run has ID `QK5YGGYZ'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [OK] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0) Testing `Picos_sync'. This run has ID `6A7S1PY9'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [OK] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 1) Testing `Picos_sync'. This run has ID `2DTPLW6X'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [OK] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.017s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 0) Testing `Picos_sync'. This run has ID `1VUTJPLY'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [OK] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 1) Testing `Picos_sync'. This run has ID `4UQTLCX2'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [OK] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.016s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 2) Testing `Picos_sync'. This run has ID `R3ZUMWVE'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [OK] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 3) Testing `Picos_sync'. This run has ID `3P7YE4FZ'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [OK] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Lazy$ 0) Testing `Picos_sync'. This run has ID `D7U5P85C'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [OK] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1) Testing `Picos_sync'. This run has ID `3B3VUEGZ'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [OK] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Event$ 0) Testing `Picos_sync'. This run has ID `BZ3GYKIM'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [OK] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.102s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0) Testing `Picos_sync'. This run has ID `BKET1LUC'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [OK] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.005s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Barrier$ 1) Testing `Picos_sync'. This run has ID `SL4SICBM'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [OK] Barrier 1 poisoning. [SKIP] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.004s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0) Testing `Picos_sync'. This run has ID `J1E7FBQM'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [SKIP] Lock and Lock.Condition 1 cancelation. [SKIP] Lock and Lock.Condition 2 poisoning. [SKIP] Lock and Lock.Condition 3 try_acquire. [SKIP] Rwlock and Rwlock.Condition 0 basics. [SKIP] Rwlock and Rwlock.Condition 1 cancelation. [SKIP] Rwlock and Rwlock.Condition 2 poisoning. [SKIP] Rwlock and Rwlock.Condition 3 freezing. [SKIP] Rwlock and Rwlock.Condition 4 try_acquire. [SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared. [SKIP] Rwlock and Rwlock.Condition 6 sharing. [SKIP] Semaphore 0 basics. [SKIP] Semaphore 1 stress. [SKIP] Sem 0 basics. [SKIP] Sem 1 stress. [SKIP] Sem 2 poisoning. [SKIP] Sem 3 try_acquire. [SKIP] Lazy 0 basics. [SKIP] Lazy 1 cancelation. [SKIP] Event 0 basics. [SKIP] Barrier 0 basics. [SKIP] Barrier 1 poisoning. [OK] Non-cancelable ops 0 are not canceled. Full test results in `~/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.002s. 1 test run. (cd _build/default/test && ./test_mpmcq.exe) random seed: 2472070002154845209 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mpmcq sequential [ ] 0 0 0 0 / 32 0.0s Mpmcq sequential (generating) [✓] 32 0 0 32 / 32 0.0s Mpmcq sequential [ ] 0 0 0 0 / 32 0.0s Mpmcq concurrent [ ] 3 0 0 3 / 32 0.1s Mpmcq concurrent [ ] 6 0 0 6 / 32 0.2s Mpmcq concurrent [ ] 10 0 0 10 / 32 0.4s Mpmcq concurrent [ ] 12 0 0 12 / 32 0.6s Mpmcq concurrent [ ] 15 0 0 15 / 32 0.7s Mpmcq concurrent [ ] 19 0 0 19 / 32 0.9s Mpmcq concurrent [ ] 22 0 0 22 / 32 1.0s Mpmcq concurrent [ ] 24 0 0 24 / 32 1.1s Mpmcq concurrent [ ] 30 0 0 30 / 32 1.2s Mpmcq concurrent [✓] 32 0 0 32 / 32 1.2s Mpmcq concurrent ================================================================================ success (ran 2 tests) random seed: 4490266711734449994 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Mpmcq sequential [✓] 64 0 0 64 / 64 0.0s Mpmcq sequential [ ] 0 0 0 0 / 64 0.0s Mpmcq concurrent [ ] 2 0 0 2 / 64 0.1s Mpmcq concurrent [ ] 7 0 0 7 / 64 0.2s Mpmcq concurrent [ ] 8 0 0 8 / 64 0.3s Mpmcq concurrent [ ] 12 0 0 12 / 64 0.5s Mpmcq concurrent [ ] 17 0 0 17 / 64 0.6s Mpmcq concurrent [ ] 21 0 0 21 / 64 0.7s Mpmcq concurrent [ ] 26 0 0 26 / 64 0.8s Mpmcq concurrent [ ] 31 0 0 31 / 64 0.9s Mpmcq concurrent [ ] 36 0 0 36 / 64 1.1s Mpmcq concurrent [ ] 39 0 0 39 / 64 1.2s Mpmcq concurrent [ ] 40 0 0 40 / 64 1.4s Mpmcq concurrent [ ] 43 0 0 43 / 64 1.5s Mpmcq concurrent [ ] 46 0 0 46 / 64 1.6s Mpmcq concurrent [ ] 49 0 0 49 / 64 1.8s Mpmcq concurrent [ ] 52 0 0 52 / 64 2.3s Mpmcq concurrent [ ] 57 0 0 57 / 64 2.4s Mpmcq concurrent [ ] 61 0 0 61 / 64 2.6s Mpmcq concurrent [✓] 64 0 0 64 / 64 2.7s Mpmcq concurrent ================================================================================ success (ran 2 tests) random seed: 4420829531624539371 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Mpmcq sequential [✓] 128 0 0 128 / 128 0.0s Mpmcq sequential [ ] 0 0 0 0 / 128 0.0s Mpmcq concurrent [ ] 2 0 0 2 / 128 0.1s Mpmcq concurrent [ ] 5 0 0 5 / 128 0.2s Mpmcq concurrent [ ] 10 0 0 10 / 128 0.3s Mpmcq concurrent [ ] 11 0 0 11 / 128 0.8s Mpmcq concurrent [ ] 13 0 0 13 / 128 1.4s Mpmcq concurrent [ ] 15 0 0 15 / 128 1.8s Mpmcq concurrent [ ] 18 0 0 18 / 128 1.9s Mpmcq concurrent [ ] 20 0 0 20 / 128 2.1s Mpmcq concurrent [ ] 22 0 0 22 / 128 2.2s Mpmcq concurrent [ ] 24 0 0 24 / 128 2.3s Mpmcq concurrent [ ] 27 0 0 27 / 128 2.4s Mpmcq concurrent [ ] 30 0 0 30 / 128 2.7s Mpmcq concurrent [ ] 32 0 0 32 / 128 3.1s Mpmcq concurrent [ ] 34 0 0 34 / 128 3.5s Mpmcq concurrent [ ] 37 0 0 37 / 128 3.7s Mpmcq concurrent [ ] 39 0 0 39 / 128 3.8s Mpmcq concurrent [ ] 41 0 0 41 / 128 3.9s Mpmcq concurrent [ ] 45 0 0 45 / 128 4.3s Mpmcq concurrent [ ] 48 0 0 48 / 128 4.5s Mpmcq concurrent [ ] 50 0 0 50 / 128 5.1s Mpmcq concurrent [ ] 52 0 0 52 / 128 5.3s Mpmcq concurrent [ ] 56 0 0 56 / 128 5.5s Mpmcq concurrent [ ] 59 0 0 59 / 128 5.6s Mpmcq concurrent [ ] 62 0 0 62 / 128 5.7s Mpmcq concurrent [ ] 64 0 0 64 / 128 6.0s Mpmcq concurrent [ ] 66 0 0 66 / 128 6.2s Mpmcq concurrent [ ] 68 0 0 68 / 128 6.3s Mpmcq concurrent [ ] 70 0 0 70 / 128 6.5s Mpmcq concurrent [ ] 72 0 0 72 / 128 6.6s Mpmcq concurrent [ ] 73 0 0 73 / 128 6.7s Mpmcq concurrent [ ] 74 0 0 74 / 128 6.9s Mpmcq concurrent [ ] 76 0 0 76 / 128 7.0s Mpmcq concurrent [ ] 80 0 0 80 / 128 7.1s Mpmcq concurrent [ ] 83 0 0 83 / 128 7.2s Mpmcq concurrent [ ] 84 0 0 84 / 128 7.7s Mpmcq concurrent [ ] 89 0 0 89 / 128 7.8s Mpmcq concurrent [ ] 94 0 0 94 / 128 8.0s Mpmcq concurrent [ ] 98 0 0 98 / 128 8.1s Mpmcq concurrent [ ] 101 0 0 101 / 128 8.2s Mpmcq concurrent [ ] 105 0 0 105 / 128 8.3s Mpmcq concurrent [ ] 109 0 0 109 / 128 8.5s Mpmcq concurrent [ ] 112 0 0 112 / 128 9.2s Mpmcq concurrent [ ] 114 0 0 114 / 128 9.3s Mpmcq concurrent [ ] 117 0 0 117 / 128 10.0s Mpmcq concurrent [ ] 118 0 0 118 / 128 10.3s Mpmcq concurrent [ ] 120 0 0 120 / 128 10.4s Mpmcq concurrent [ ] 121 0 0 121 / 128 10.6s Mpmcq concurrent [ ] 123 0 0 123 / 128 10.7s Mpmcq concurrent [ ] 126 0 0 126 / 128 11.2s Mpmcq concurrent [ ] 128 0 0 128 / 128 11.6s Mpmcq concurrent [✓] 128 0 0 128 / 128 11.6s Mpmcq concurrent ================================================================================ success (ran 2 tests) random seed: 3865111616702522124 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Mpmcq sequential [✓] 256 0 0 256 / 256 0.0s Mpmcq sequential [ ] 0 0 0 0 / 256 0.0s Mpmcq concurrent [ ] 3 0 0 3 / 256 0.1s Mpmcq concurrent [ ] 6 0 0 6 / 256 0.7s Mpmcq concurrent [ ] 8 0 0 8 / 256 1.0s Mpmcq concurrent [ ] 12 0 0 12 / 256 1.1s Mpmcq concurrent [ ] 15 0 0 15 / 256 1.2s Mpmcq concurrent [ ] 18 0 0 18 / 256 1.6s Mpmcq concurrent [ ] 20 0 0 20 / 256 1.7s Mpmcq concurrent [ ] 23 0 0 23 / 256 1.8s Mpmcq concurrent [ ] 27 0 0 27 / 256 1.9s Mpmcq concurrent [ ] 29 0 0 29 / 256 2.2s Mpmcq concurrent [ ] 30 0 0 30 / 256 2.6s Mpmcq concurrent [ ] 32 0 0 32 / 256 2.7s Mpmcq concurrent [ ] 35 0 0 35 / 256 2.9s Mpmcq concurrent [ ] 36 0 0 36 / 256 3.0s Mpmcq concurrent [ ] 38 0 0 38 / 256 3.1s Mpmcq concurrent [ ] 42 0 0 42 / 256 3.3s Mpmcq concurrent [ ] 45 0 0 45 / 256 3.4s Mpmcq concurrent [ ] 48 0 0 48 / 256 3.5s Mpmcq concurrent [ ] 50 0 0 50 / 256 3.6s Mpmcq concurrent [ ] 54 0 0 54 / 256 3.8s Mpmcq concurrent [ ] 57 0 0 57 / 256 3.9s Mpmcq concurrent [ ] 60 0 0 60 / 256 4.1s Mpmcq concurrent [ ] 63 0 0 63 / 256 4.2s Mpmcq concurrent [ ] 66 0 0 66 / 256 4.3s Mpmcq concurrent [ ] 67 0 0 67 / 256 4.5s Mpmcq concurrent [ ] 69 0 0 69 / 256 4.6s Mpmcq concurrent [ ] 73 0 0 73 / 256 4.8s Mpmcq concurrent [ ] 77 0 0 77 / 256 4.9s Mpmcq concurrent [ ] 80 0 0 80 / 256 5.0s Mpmcq concurrent [ ] 82 0 0 82 / 256 5.2s Mpmcq concurrent [ ] 84 0 0 84 / 256 5.7s Mpmcq concurrent [ ] 87 0 0 87 / 256 5.8s Mpmcq concurrent [ ] 90 0 0 90 / 256 6.0s Mpmcq concurrent [ ] 93 0 0 93 / 256 6.4s Mpmcq concurrent [ ] 96 0 0 96 / 256 6.5s Mpmcq concurrent [ ] 97 0 0 97 / 256 6.8s Mpmcq concurrent [ ] 100 0 0 100 / 256 7.0s Mpmcq concurrent [ ] 102 0 0 102 / 256 7.2s Mpmcq concurrent [ ] 103 0 0 103 / 256 7.3s Mpmcq concurrent [ ] 106 0 0 106 / 256 7.4s Mpmcq concurrent [ ] 109 0 0 109 / 256 7.6s Mpmcq concurrent [ ] 110 0 0 110 / 256 7.7s Mpmcq concurrent [ ] 112 0 0 112 / 256 8.0s Mpmcq concurrent [ ] 113 0 0 113 / 256 8.2s Mpmcq concurrent [ ] 116 0 0 116 / 256 8.3s Mpmcq concurrent [ ] 120 0 0 120 / 256 8.4s Mpmcq concurrent [ ] 124 0 0 124 / 256 8.5s Mpmcq concurrent [ ] 125 0 0 125 / 256 8.9s Mpmcq concurrent [ ] 128 0 0 128 / 256 9.0s Mpmcq concurrent [ ] 131 0 0 131 / 256 9.1s Mpmcq concurrent [ ] 133 0 0 133 / 256 9.3s Mpmcq concurrent [ ] 135 0 0 135 / 256 9.5s Mpmcq concurrent [ ] 137 0 0 137 / 256 9.6s Mpmcq concurrent [ ] 138 0 0 138 / 256 9.9s Mpmcq concurrent [ ] 140 0 0 140 / 256 10.1s Mpmcq concurrent [ ] 144 0 0 144 / 256 10.2s Mpmcq concurrent [ ] 146 0 0 146 / 256 10.4s Mpmcq concurrent [ ] 149 0 0 149 / 256 10.6s Mpmcq concurrent [ ] 153 0 0 153 / 256 10.7s Mpmcq concurrent [ ] 154 0 0 154 / 256 10.9s Mpmcq concurrent [ ] 156 0 0 156 / 256 11.0s Mpmcq concurrent [ ] 158 0 0 158 / 256 11.1s Mpmcq concurrent [ ] 161 0 0 161 / 256 11.3s Mpmcq concurrent [ ] 163 0 0 163 / 256 11.4s Mpmcq concurrent [ ] 165 0 0 165 / 256 11.5s Mpmcq concurrent [ ] 167 0 0 167 / 256 11.8s Mpmcq concurrent [ ] 169 0 0 169 / 256 11.9s Mpmcq concurrent [ ] 172 0 0 172 / 256 12.0s Mpmcq concurrent [ ] 176 0 0 176 / 256 12.1s Mpmcq concurrent [ ] 178 0 0 178 / 256 12.5s Mpmcq concurrent [ ] 180 0 0 180 / 256 12.7s Mpmcq concurrent [ ] 182 0 0 182 / 256 12.8s Mpmcq concurrent [ ] 183 0 0 183 / 256 13.2s Mpmcq concurrent [ ] 185 0 0 185 / 256 13.6s Mpmcq concurrent [ ] 188 0 0 188 / 256 13.7s Mpmcq concurrent [ ] 190 0 0 190 / 256 13.8s Mpmcq concurrent [ ] 193 0 0 193 / 256 13.9s Mpmcq concurrent [ ] 195 0 0 195 / 256 14.3s Mpmcq concurrent [ ] 198 0 0 198 / 256 14.4s Mpmcq concurrent [ ] 200 0 0 200 / 256 14.5s Mpmcq concurrent [ ] 202 0 0 202 / 256 14.6s Mpmcq concurrent [ ] 205 0 0 205 / 256 14.8s Mpmcq concurrent [ ] 206 0 0 206 / 256 15.0s Mpmcq concurrent [ ] 207 0 0 207 / 256 15.1s Mpmcq concurrent [ ] 209 0 0 209 / 256 15.2s Mpmcq concurrent [ ] 211 0 0 211 / 256 15.4s Mpmcq concurrent [ ] 214 0 0 214 / 256 15.5s Mpmcq concurrent [ ] 215 0 0 215 / 256 15.9s Mpmcq concurrent [ ] 217 0 0 217 / 256 16.1s Mpmcq concurrent [ ] 220 0 0 220 / 256 16.2s Mpmcq concurrent [ ] 223 0 0 223 / 256 16.4s Mpmcq concurrent [ ] 228 0 0 228 / 256 16.6s Mpmcq concurrent [ ] 231 0 0 231 / 256 16.7s Mpmcq concurrent [ ] 233 0 0 233 / 256 16.8s Mpmcq concurrent [ ] 236 0 0 236 / 256 16.9s Mpmcq concurrent [ ] 237 0 0 237 / 256 17.1s Mpmcq concurrent [ ] 238 0 0 238 / 256 17.4s Mpmcq concurrent [ ] 240 0 0 240 / 256 17.6s Mpmcq concurrent [ ] 241 0 0 241 / 256 17.8s Mpmcq concurrent [ ] 243 0 0 243 / 256 18.0s Mpmcq concurrent [ ] 245 0 0 245 / 256 18.1s Mpmcq concurrent [ ] 247 0 0 247 / 256 18.2s Mpmcq concurrent [ ] 249 0 0 249 / 256 18.4s Mpmcq concurrent [ ] 250 0 0 250 / 256 18.5s Mpmcq concurrent [ ] 252 0 0 252 / 256 18.7s Mpmcq concurrent [ ] 254 0 0 254 / 256 18.8s Mpmcq concurrent [ ] 255 0 0 255 / 256 19.2s Mpmcq concurrent [✓] 256 0 0 256 / 256 19.2s Mpmcq concurrent ================================================================================ success (ran 2 tests) random seed: 1836662020888416052 generated error fail pass / total time test name [ ] 0 0 0 0 / 348 0.0s Mpmcq sequential [✓] 348 0 0 348 / 348 0.0s Mpmcq sequential [ ] 0 0 0 0 / 348 0.0s Mpmcq concurrent [ ] 1 0 0 1 / 348 0.2s Mpmcq concurrent [ ] 3 0 0 3 / 348 0.3s Mpmcq concurrent [ ] 5 0 0 5 / 348 0.4s Mpmcq concurrent [ ] 8 0 0 8 / 348 0.6s Mpmcq concurrent [ ] 11 0 0 11 / 348 0.7s Mpmcq concurrent [ ] 14 0 0 14 / 348 1.2s Mpmcq concurrent [ ] 17 0 0 17 / 348 1.3s Mpmcq concurrent [ ] 19 0 0 19 / 348 1.4s Mpmcq concurrent [ ] 21 0 0 21 / 348 1.9s Mpmcq concurrent [ ] 23 0 0 23 / 348 2.0s Mpmcq concurrent [ ] 24 0 0 24 / 348 2.2s Mpmcq concurrent [ ] 26 0 0 26 / 348 2.3s Mpmcq concurrent [ ] 27 0 0 27 / 348 2.5s Mpmcq concurrent [ ] 29 0 0 29 / 348 2.6s Mpmcq concurrent [ ] 32 0 0 32 / 348 2.7s Mpmcq concurrent [ ] 35 0 0 35 / 348 2.9s Mpmcq concurrent [ ] 38 0 0 38 / 348 3.0s Mpmcq concurrent [ ] 41 0 0 41 / 348 3.2s Mpmcq concurrent [ ] 44 0 0 44 / 348 3.3s Mpmcq concurrent [ ] 46 0 0 46 / 348 3.4s Mpmcq concurrent [ ] 49 0 0 49 / 348 3.5s Mpmcq concurrent [ ] 52 0 0 52 / 348 3.6s Mpmcq concurrent [ ] 53 0 0 53 / 348 4.0s Mpmcq concurrent [ ] 56 0 0 56 / 348 4.2s Mpmcq concurrent [ ] 58 0 0 58 / 348 4.5s Mpmcq concurrent [ ] 61 0 0 61 / 348 4.6s Mpmcq concurrent [ ] 63 0 0 63 / 348 4.8s Mpmcq concurrent [ ] 67 0 0 67 / 348 4.9s Mpmcq concurrent [ ] 69 0 0 69 / 348 5.0s Mpmcq concurrent [ ] 70 0 0 70 / 348 5.1s Mpmcq concurrent [ ] 72 0 0 72 / 348 5.4s Mpmcq concurrent [ ] 75 0 0 75 / 348 5.5s Mpmcq concurrent [ ] 77 0 0 77 / 348 5.6s Mpmcq concurrent [ ] 79 0 0 79 / 348 5.8s Mpmcq concurrent [ ] 81 0 0 81 / 348 5.9s Mpmcq concurrent [ ] 83 0 0 83 / 348 6.4s Mpmcq concurrent [ ] 85 0 0 85 / 348 6.9s Mpmcq concurrent [ ] 88 0 0 88 / 348 7.3s Mpmcq concurrent [ ] 90 0 0 90 / 348 7.5s Mpmcq concurrent [ ] 91 0 0 91 / 348 7.7s Mpmcq concurrent [ ] 92 0 0 92 / 348 7.9s Mpmcq concurrent [ ] 93 0 0 93 / 348 8.1s Mpmcq concurrent [ ] 96 0 0 96 / 348 8.5s Mpmcq concurrent [ ] 99 0 0 99 / 348 8.7s Mpmcq concurrent [ ] 100 0 0 100 / 348 8.8s Mpmcq concurrent [ ] 103 0 0 103 / 348 9.0s Mpmcq concurrent [ ] 106 0 0 106 / 348 9.1s Mpmcq concurrent [ ] 109 0 0 109 / 348 9.2s Mpmcq concurrent [ ] 112 0 0 112 / 348 9.6s Mpmcq concurrent [ ] 114 0 0 114 / 348 9.7s Mpmcq concurrent [ ] 117 0 0 117 / 348 9.8s Mpmcq concurrent [ ] 120 0 0 120 / 348 9.9s Mpmcq concurrent [ ] 122 0 0 122 / 348 10.0s Mpmcq concurrent [ ] 124 0 0 124 / 348 10.1s Mpmcq concurrent [ ] 127 0 0 127 / 348 10.2s Mpmcq concurrent [ ] 128 0 0 128 / 348 10.5s Mpmcq concurrent [ ] 131 0 0 131 / 348 10.7s Mpmcq concurrent [ ] 134 0 0 134 / 348 10.8s Mpmcq concurrent [ ] 137 0 0 137 / 348 10.9s Mpmcq concurrent [ ] 141 0 0 141 / 348 11.2s Mpmcq concurrent [ ] 143 0 0 143 / 348 11.4s Mpmcq concurrent [ ] 144 0 0 144 / 348 11.6s Mpmcq concurrent [ ] 147 0 0 147 / 348 11.7s Mpmcq concurrent [ ] 150 0 0 150 / 348 11.8s Mpmcq concurrent [ ] 151 0 0 151 / 348 12.0s Mpmcq concurrent [ ] 154 0 0 154 / 348 12.1s Mpmcq concurrent [ ] 157 0 0 157 / 348 12.3s Mpmcq concurrent [ ] 159 0 0 159 / 348 12.4s Mpmcq concurrent [ ] 162 0 0 162 / 348 12.5s Mpmcq concurrent [ ] 164 0 0 164 / 348 12.6s Mpmcq concurrent [ ] 167 0 0 167 / 348 12.8s Mpmcq concurrent [ ] 170 0 0 170 / 348 13.1s Mpmcq concurrent [ ] 172 0 0 172 / 348 13.3s Mpmcq concurrent [ ] 174 0 0 174 / 348 13.4s Mpmcq concurrent [ ] 176 0 0 176 / 348 13.5s Mpmcq concurrent [ ] 179 0 0 179 / 348 13.6s Mpmcq concurrent [ ] 182 0 0 182 / 348 13.7s Mpmcq concurrent [ ] 185 0 0 185 / 348 14.2s Mpmcq concurrent [ ] 186 0 0 186 / 348 14.3s Mpmcq concurrent [ ] 189 0 0 189 / 348 14.5s Mpmcq concurrent [ ] 192 0 0 192 / 348 14.7s Mpmcq concurrent [ ] 196 0 0 196 / 348 14.8s Mpmcq concurrent [ ] 198 0 0 198 / 348 14.9s Mpmcq concurrent [ ] 202 0 0 202 / 348 15.1s Mpmcq concurrent [ ] 206 0 0 206 / 348 15.2s Mpmcq concurrent [ ] 209 0 0 209 / 348 15.6s Mpmcq concurrent [ ] 211 0 0 211 / 348 15.8s Mpmcq concurrent [ ] 213 0 0 213 / 348 15.9s Mpmcq concurrent [ ] 214 0 0 214 / 348 16.1s Mpmcq concurrent [ ] 216 0 0 216 / 348 16.2s Mpmcq concurrent [ ] 218 0 0 218 / 348 16.6s Mpmcq concurrent [ ] 221 0 0 221 / 348 16.7s Mpmcq concurrent [ ] 223 0 0 223 / 348 16.8s Mpmcq concurrent [ ] 226 0 0 226 / 348 16.9s Mpmcq concurrent [ ] 228 0 0 228 / 348 17.1s Mpmcq concurrent [ ] 229 0 0 229 / 348 17.4s Mpmcq concurrent [ ] 230 0 0 230 / 348 17.7s Mpmcq concurrent [ ] 232 0 0 232 / 348 17.9s Mpmcq concurrent [ ] 233 0 0 233 / 348 18.2s Mpmcq concurrent [ ] 234 0 0 234 / 348 18.4s Mpmcq concurrent [ ] 237 0 0 237 / 348 18.6s Mpmcq concurrent [ ] 240 0 0 240 / 348 18.7s Mpmcq concurrent [ ] 243 0 0 243 / 348 18.8s Mpmcq concurrent [ ] 245 0 0 245 / 348 19.2s Mpmcq concurrent [ ] 247 0 0 247 / 348 19.4s Mpmcq concurrent [ ] 249 0 0 249 / 348 19.6s Mpmcq concurrent [ ] 252 0 0 252 / 348 19.7s Mpmcq concurrent [ ] 255 0 0 255 / 348 19.9s Mpmcq concurrent [ ] 257 0 0 257 / 348 20.0s Mpmcq concurrent [ ] 260 0 0 260 / 348 20.3s Mpmcq concurrent [ ] 261 0 0 261 / 348 20.4s Mpmcq concurrent [ ] 264 0 0 264 / 348 20.5s Mpmcq concurrent [ ] 265 0 0 265 / 348 20.6s Mpmcq concurrent [ ] 268 0 0 268 / 348 20.7s Mpmcq concurrent [ ] 270 0 0 270 / 348 20.9s Mpmcq concurrent [ ] 272 0 0 272 / 348 21.0s Mpmcq concurrent [ ] 274 0 0 274 / 348 21.3s Mpmcq concurrent [ ] 275 0 0 275 / 348 21.4s Mpmcq concurrent [ ] 277 0 0 277 / 348 21.6s Mpmcq concurrent [ ] 280 0 0 280 / 348 22.0s Mpmcq concurrent [ ] 282 0 0 282 / 348 22.2s Mpmcq concurrent [ ] 284 0 0 284 / 348 22.3s Mpmcq concurrent [ ] 287 0 0 287 / 348 22.5s Mpmcq concurrent [ ] 290 0 0 290 / 348 22.9s Mpmcq concurrent [ ] 292 0 0 292 / 348 23.0s Mpmcq concurrent [ ] 293 0 0 293 / 348 23.1s Mpmcq concurrent [ ] 295 0 0 295 / 348 23.4s Mpmcq concurrent [ ] 298 0 0 298 / 348 23.5s Mpmcq concurrent [ ] 301 0 0 301 / 348 23.7s Mpmcq concurrent [ ] 304 0 0 304 / 348 23.8s Mpmcq concurrent [ ] 308 0 0 308 / 348 23.9s Mpmcq concurrent [ ] 312 0 0 312 / 348 24.1s Mpmcq concurrent [ ] 313 0 0 313 / 348 24.2s Mpmcq concurrent [ ] 316 0 0 316 / 348 24.3s Mpmcq concurrent [ ] 319 0 0 319 / 348 24.4s Mpmcq concurrent [ ] 322 0 0 322 / 348 24.8s Mpmcq concurrent [ ] 325 0 0 325 / 348 24.9s Mpmcq concurrent [ ] 327 0 0 327 / 348 25.1s Mpmcq concurrent [ ] 328 0 0 328 / 348 25.4s Mpmcq concurrent [ ] 331 0 0 331 / 348 25.6s Mpmcq concurrent [ ] 335 0 0 335 / 348 25.7s Mpmcq concurrent [ ] 339 0 0 339 / 348 25.9s Mpmcq concurrent [ ] 342 0 0 342 / 348 26.0s Mpmcq concurrent [ ] 344 0 0 344 / 348 26.2s Mpmcq concurrent [ ] 346 0 0 346 / 348 26.3s Mpmcq concurrent [ ] 347 0 0 347 / 348 26.4s Mpmcq concurrent [ ] 348 0 0 348 / 348 26.5s Mpmcq concurrent [✓] 348 0 0 348 / 348 26.5s Mpmcq concurrent ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_htbl.exe) random seed: 991456836967306566 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Htbl sequential [ ] 0 0 0 0 / 32 0.0s Htbl sequential (generating) [✓] 32 0 0 32 / 32 0.0s Htbl sequential [ ] 0 0 0 0 / 32 0.0s Htbl concurrent [ ] 4 0 0 4 / 32 0.1s Htbl concurrent [ ] 7 0 0 7 / 32 0.3s Htbl concurrent [ ] 10 0 0 10 / 32 0.5s Htbl concurrent [ ] 13 0 0 13 / 32 0.6s Htbl concurrent [ ] 17 0 0 17 / 32 0.8s Htbl concurrent [ ] 20 0 0 20 / 32 0.9s Htbl concurrent [ ] 23 0 0 23 / 32 1.1s Htbl concurrent [ ] 27 0 0 27 / 32 1.2s Htbl concurrent [ ] 30 0 0 30 / 32 1.3s Htbl concurrent [✓] 32 0 0 32 / 32 1.4s Htbl concurrent ================================================================================ success (ran 2 tests) random seed: 3516379893729056672 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Htbl sequential [✓] 64 0 0 64 / 64 0.0s Htbl sequential [ ] 0 0 0 0 / 64 0.0s Htbl concurrent [ ] 3 0 0 3 / 64 0.1s Htbl concurrent [ ] 7 0 0 7 / 64 0.2s Htbl concurrent [ ] 11 0 0 11 / 64 0.3s Htbl concurrent [ ] 12 0 0 12 / 64 0.5s Htbl concurrent [ ] 13 0 0 13 / 64 0.9s Htbl concurrent [ ] 17 0 0 17 / 64 1.0s Htbl concurrent [ ] 19 0 0 19 / 64 1.2s Htbl concurrent [ ] 21 0 0 21 / 64 1.3s Htbl concurrent [ ] 24 0 0 24 / 64 1.4s Htbl concurrent [ ] 28 0 0 28 / 64 1.6s Htbl concurrent [ ] 30 0 0 30 / 64 1.8s Htbl concurrent [ ] 32 0 0 32 / 64 1.9s Htbl concurrent [ ] 34 0 0 34 / 64 2.0s Htbl concurrent [ ] 38 0 0 38 / 64 2.1s Htbl concurrent [ ] 42 0 0 42 / 64 2.2s Htbl concurrent [ ] 44 0 0 44 / 64 2.4s Htbl concurrent [ ] 48 0 0 48 / 64 2.7s Htbl concurrent [ ] 53 0 0 53 / 64 2.8s Htbl concurrent [ ] 57 0 0 57 / 64 2.9s Htbl concurrent [ ] 60 0 0 60 / 64 3.1s Htbl concurrent [ ] 62 0 0 62 / 64 3.2s Htbl concurrent [✓] 64 0 0 64 / 64 3.2s Htbl concurrent ================================================================================ success (ran 2 tests) random seed: 109076345342349171 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Htbl sequential [✓] 128 0 0 128 / 128 0.0s Htbl sequential [ ] 0 0 0 0 / 128 0.0s Htbl concurrent [ ] 2 0 0 2 / 128 0.1s Htbl concurrent [ ] 5 0 0 5 / 128 0.2s Htbl concurrent [ ] 8 0 0 8 / 128 0.3s Htbl concurrent [ ] 11 0 0 11 / 128 0.5s Htbl concurrent [ ] 14 0 0 14 / 128 0.6s Htbl concurrent [ ] 18 0 0 18 / 128 0.7s Htbl concurrent [ ] 19 0 0 19 / 128 1.2s Htbl concurrent [ ] 20 0 0 20 / 128 1.3s Htbl concurrent [ ] 23 0 0 23 / 128 1.4s Htbl concurrent [ ] 26 0 0 26 / 128 1.5s Htbl concurrent [ ] 27 0 0 27 / 128 1.6s Htbl concurrent [ ] 31 0 0 31 / 128 1.8s Htbl concurrent [ ] 35 0 0 35 / 128 1.9s Htbl concurrent [ ] 38 0 0 38 / 128 2.0s Htbl concurrent [ ] 42 0 0 42 / 128 2.1s Htbl concurrent [ ] 45 0 0 45 / 128 2.3s Htbl concurrent [ ] 47 0 0 47 / 128 2.4s Htbl concurrent [ ] 50 0 0 50 / 128 2.5s Htbl concurrent [ ] 52 0 0 52 / 128 2.7s Htbl concurrent [ ] 55 0 0 55 / 128 2.9s Htbl concurrent [ ] 58 0 0 58 / 128 3.0s Htbl concurrent [ ] 60 0 0 60 / 128 3.1s Htbl concurrent [ ] 63 0 0 63 / 128 3.2s Htbl concurrent [ ] 67 0 0 67 / 128 3.4s Htbl concurrent [ ] 70 0 0 70 / 128 3.5s Htbl concurrent [ ] 74 0 0 74 / 128 3.6s Htbl concurrent [ ] 77 0 0 77 / 128 3.9s Htbl concurrent [ ] 80 0 0 80 / 128 4.0s Htbl concurrent [ ] 83 0 0 83 / 128 4.2s Htbl concurrent [ ] 84 0 0 84 / 128 4.3s Htbl concurrent [ ] 87 0 0 87 / 128 4.5s Htbl concurrent [ ] 88 0 0 88 / 128 4.6s Htbl concurrent [ ] 90 0 0 90 / 128 4.8s Htbl concurrent [ ] 94 0 0 94 / 128 4.9s Htbl concurrent [ ] 97 0 0 97 / 128 5.0s Htbl concurrent [ ] 100 0 0 100 / 128 5.2s Htbl concurrent [ ] 103 0 0 103 / 128 5.3s Htbl concurrent [ ] 104 0 0 104 / 128 5.4s Htbl concurrent [ ] 107 0 0 107 / 128 5.6s Htbl concurrent [ ] 109 0 0 109 / 128 5.7s Htbl concurrent [ ] 113 0 0 113 / 128 5.8s Htbl concurrent [ ] 117 0 0 117 / 128 5.9s Htbl concurrent [ ] 120 0 0 120 / 128 6.0s Htbl concurrent [ ] 121 0 0 121 / 128 6.1s Htbl concurrent [ ] 124 0 0 124 / 128 6.3s Htbl concurrent [ ] 126 0 0 126 / 128 6.5s Htbl concurrent [ ] 128 0 0 128 / 128 6.6s Htbl concurrent [✓] 128 0 0 128 / 128 6.6s Htbl concurrent ================================================================================ success (ran 2 tests) random seed: 2454489937038406355 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Htbl sequential [✓] 256 0 0 256 / 256 0.0s Htbl sequential [ ] 0 0 0 0 / 256 0.0s Htbl concurrent [ ] 3 0 0 3 / 256 0.1s Htbl concurrent [ ] 6 0 0 6 / 256 0.2s Htbl concurrent [ ] 8 0 0 8 / 256 0.4s Htbl concurrent [ ] 12 0 0 12 / 256 0.5s Htbl concurrent [ ] 14 0 0 14 / 256 0.7s Htbl concurrent [ ] 17 0 0 17 / 256 0.8s Htbl concurrent [ ] 20 0 0 20 / 256 0.9s Htbl concurrent [ ] 22 0 0 22 / 256 1.1s Htbl concurrent [ ] 25 0 0 25 / 256 1.2s Htbl concurrent [ ] 27 0 0 27 / 256 1.4s Htbl concurrent [ ] 30 0 0 30 / 256 1.6s Htbl concurrent [ ] 32 0 0 32 / 256 2.2s Htbl concurrent [ ] 35 0 0 35 / 256 2.4s Htbl concurrent [ ] 38 0 0 38 / 256 2.5s Htbl concurrent [ ] 41 0 0 41 / 256 2.7s Htbl concurrent [ ] 43 0 0 43 / 256 2.8s Htbl concurrent [ ] 46 0 0 46 / 256 2.9s Htbl concurrent [ ] 48 0 0 48 / 256 3.0s Htbl concurrent [ ] 50 0 0 50 / 256 3.1s Htbl concurrent [ ] 51 0 0 51 / 256 3.3s Htbl concurrent [ ] 53 0 0 53 / 256 3.4s Htbl concurrent [ ] 55 0 0 55 / 256 3.8s Htbl concurrent [ ] 57 0 0 57 / 256 3.9s Htbl concurrent [ ] 58 0 0 58 / 256 4.0s Htbl concurrent [ ] 59 0 0 59 / 256 4.2s Htbl concurrent [ ] 61 0 0 61 / 256 4.6s Htbl concurrent [ ] 64 0 0 64 / 256 4.8s Htbl concurrent [ ] 66 0 0 66 / 256 5.0s Htbl concurrent [ ] 67 0 0 67 / 256 5.3s Htbl concurrent [ ] 69 0 0 69 / 256 5.7s Htbl concurrent [ ] 72 0 0 72 / 256 6.0s Htbl concurrent [ ] 75 0 0 75 / 256 6.2s Htbl concurrent [ ] 78 0 0 78 / 256 6.3s Htbl concurrent [ ] 81 0 0 81 / 256 6.5s Htbl concurrent [ ] 82 0 0 82 / 256 6.6s Htbl concurrent [ ] 84 0 0 84 / 256 6.8s Htbl concurrent [ ] 87 0 0 87 / 256 7.0s Htbl concurrent [ ] 90 0 0 90 / 256 7.1s Htbl concurrent [ ] 93 0 0 93 / 256 7.6s Htbl concurrent [ ] 96 0 0 96 / 256 7.7s Htbl concurrent [ ] 99 0 0 99 / 256 8.1s Htbl concurrent [ ] 102 0 0 102 / 256 8.3s Htbl concurrent [ ] 104 0 0 104 / 256 8.4s Htbl concurrent [ ] 107 0 0 107 / 256 8.6s Htbl concurrent [ ] 110 0 0 110 / 256 8.9s Htbl concurrent [ ] 113 0 0 113 / 256 9.0s Htbl concurrent [ ] 116 0 0 116 / 256 9.1s Htbl concurrent [ ] 119 0 0 119 / 256 9.2s Htbl concurrent [ ] 122 0 0 122 / 256 9.4s Htbl concurrent [ ] 125 0 0 125 / 256 9.5s Htbl concurrent [ ] 128 0 0 128 / 256 9.7s Htbl concurrent [ ] 129 0 0 129 / 256 9.9s Htbl concurrent [ ] 132 0 0 132 / 256 10.0s Htbl concurrent [ ] 134 0 0 134 / 256 10.5s Htbl concurrent [ ] 136 0 0 136 / 256 10.6s Htbl concurrent [ ] 138 0 0 138 / 256 10.8s Htbl concurrent [ ] 140 0 0 140 / 256 10.9s Htbl concurrent [ ] 143 0 0 143 / 256 11.0s Htbl concurrent [ ] 144 0 0 144 / 256 11.2s Htbl concurrent [ ] 146 0 0 146 / 256 11.5s Htbl concurrent [ ] 149 0 0 149 / 256 11.6s Htbl concurrent [ ] 151 0 0 151 / 256 11.7s Htbl concurrent [ ] 154 0 0 154 / 256 11.9s Htbl concurrent [ ] 156 0 0 156 / 256 12.1s Htbl concurrent [ ] 159 0 0 159 / 256 12.2s Htbl concurrent [ ] 162 0 0 162 / 256 12.4s Htbl concurrent [ ] 163 0 0 163 / 256 12.5s Htbl concurrent [ ] 165 0 0 165 / 256 12.8s Htbl concurrent [ ] 168 0 0 168 / 256 13.0s Htbl concurrent [ ] 171 0 0 171 / 256 13.1s Htbl concurrent [ ] 173 0 0 173 / 256 13.3s Htbl concurrent [ ] 176 0 0 176 / 256 13.7s Htbl concurrent [ ] 179 0 0 179 / 256 13.8s Htbl concurrent [ ] 182 0 0 182 / 256 14.0s Htbl concurrent [ ] 185 0 0 185 / 256 14.1s Htbl concurrent [ ] 187 0 0 187 / 256 14.2s Htbl concurrent [ ] 189 0 0 189 / 256 14.3s Htbl concurrent [ ] 191 0 0 191 / 256 14.4s Htbl concurrent [ ] 193 0 0 193 / 256 14.7s Htbl concurrent [ ] 195 0 0 195 / 256 14.8s Htbl concurrent [ ] 198 0 0 198 / 256 14.9s Htbl concurrent [ ] 200 0 0 200 / 256 15.0s Htbl concurrent [ ] 204 0 0 204 / 256 15.2s Htbl concurrent [ ] 205 0 0 205 / 256 15.3s Htbl concurrent [ ] 206 0 0 206 / 256 15.4s Htbl concurrent [ ] 209 0 0 209 / 256 15.7s Htbl concurrent [ ] 212 0 0 212 / 256 15.9s Htbl concurrent [ ] 214 0 0 214 / 256 16.0s Htbl concurrent [ ] 216 0 0 216 / 256 16.4s Htbl concurrent [ ] 217 0 0 217 / 256 16.6s Htbl concurrent [ ] 219 0 0 219 / 256 16.7s Htbl concurrent [ ] 223 0 0 223 / 256 16.9s Htbl concurrent [ ] 226 0 0 226 / 256 17.1s Htbl concurrent [ ] 229 0 0 229 / 256 17.2s Htbl concurrent [ ] 232 0 0 232 / 256 17.4s Htbl concurrent [ ] 234 0 0 234 / 256 17.7s Htbl concurrent [ ] 236 0 0 236 / 256 17.9s Htbl concurrent [ ] 237 0 0 237 / 256 18.3s Htbl concurrent [ ] 238 0 0 238 / 256 18.5s Htbl concurrent [ ] 240 0 0 240 / 256 18.6s Htbl concurrent [ ] 242 0 0 242 / 256 18.7s Htbl concurrent [ ] 244 0 0 244 / 256 18.8s Htbl concurrent [ ] 246 0 0 246 / 256 18.9s Htbl concurrent [ ] 247 0 0 247 / 256 19.2s Htbl concurrent [ ] 250 0 0 250 / 256 19.3s Htbl concurrent [ ] 253 0 0 253 / 256 19.4s Htbl concurrent [✓] 256 0 0 256 / 256 19.5s Htbl concurrent ================================================================================ success (ran 2 tests) random seed: 3008086981614958597 generated error fail pass / total time test name [ ] 0 0 0 0 / 456 0.0s Htbl sequential [✓] 456 0 0 456 / 456 0.0s Htbl sequential [ ] 0 0 0 0 / 456 0.0s Htbl concurrent [ ] 1 0 0 1 / 456 0.0s Htbl concurrent [ ] 4 0 0 4 / 456 0.2s Htbl concurrent [ ] 5 0 0 5 / 456 0.5s Htbl concurrent [ ] 6 0 0 6 / 456 0.7s Htbl concurrent [ ] 10 0 0 10 / 456 0.8s Htbl concurrent [ ] 14 0 0 14 / 456 0.9s Htbl concurrent [ ] 15 0 0 15 / 456 1.2s Htbl concurrent [ ] 19 0 0 19 / 456 1.4s Htbl concurrent [ ] 22 0 0 22 / 456 1.6s Htbl concurrent [ ] 24 0 0 24 / 456 1.7s Htbl concurrent [ ] 26 0 0 26 / 456 1.8s Htbl concurrent [ ] 29 0 0 29 / 456 2.0s Htbl concurrent [ ] 32 0 0 32 / 456 2.2s Htbl concurrent [ ] 35 0 0 35 / 456 2.3s Htbl concurrent [ ] 38 0 0 38 / 456 2.4s Htbl concurrent [ ] 40 0 0 40 / 456 2.7s Htbl concurrent [ ] 43 0 0 43 / 456 2.8s Htbl concurrent [ ] 45 0 0 45 / 456 3.0s Htbl concurrent [ ] 47 0 0 47 / 456 3.1s Htbl concurrent [ ] 49 0 0 49 / 456 3.3s Htbl concurrent [ ] 52 0 0 52 / 456 3.4s Htbl concurrent [ ] 54 0 0 54 / 456 3.7s Htbl concurrent [ ] 57 0 0 57 / 456 3.8s Htbl concurrent [ ] 60 0 0 60 / 456 4.0s Htbl concurrent [ ] 62 0 0 62 / 456 4.1s Htbl concurrent [ ] 65 0 0 65 / 456 4.3s Htbl concurrent [ ] 67 0 0 67 / 456 4.4s Htbl concurrent [ ] 69 0 0 69 / 456 4.6s Htbl concurrent [ ] 70 0 0 70 / 456 4.7s Htbl concurrent [ ] 72 0 0 72 / 456 4.8s Htbl concurrent [ ] 74 0 0 74 / 456 5.0s Htbl concurrent [ ] 75 0 0 75 / 456 5.1s Htbl concurrent [ ] 76 0 0 76 / 456 5.2s Htbl concurrent [ ] 79 0 0 79 / 456 5.3s Htbl concurrent [ ] 82 0 0 82 / 456 5.4s Htbl concurrent [ ] 85 0 0 85 / 456 5.6s Htbl concurrent [ ] 88 0 0 88 / 456 5.7s Htbl concurrent [ ] 89 0 0 89 / 456 6.1s Htbl concurrent [ ] 91 0 0 91 / 456 6.3s Htbl concurrent [ ] 93 0 0 93 / 456 6.6s Htbl concurrent [ ] 95 0 0 95 / 456 6.7s Htbl concurrent [ ] 97 0 0 97 / 456 6.9s Htbl concurrent [ ] 98 0 0 98 / 456 7.0s Htbl concurrent [ ] 100 0 0 100 / 456 7.1s Htbl concurrent [ ] 102 0 0 102 / 456 7.2s Htbl concurrent [ ] 104 0 0 104 / 456 7.6s Htbl concurrent [ ] 106 0 0 106 / 456 7.7s Htbl concurrent [ ] 110 0 0 110 / 456 7.9s Htbl concurrent [ ] 113 0 0 113 / 456 8.0s Htbl concurrent [ ] 116 0 0 116 / 456 8.1s Htbl concurrent [ ] 119 0 0 119 / 456 8.3s Htbl concurrent [ ] 123 0 0 123 / 456 8.4s Htbl concurrent [ ] 126 0 0 126 / 456 8.8s Htbl concurrent [ ] 128 0 0 128 / 456 9.0s Htbl concurrent [ ] 130 0 0 130 / 456 9.1s Htbl concurrent [ ] 131 0 0 131 / 456 9.3s Htbl concurrent [ ] 133 0 0 133 / 456 9.5s Htbl concurrent [ ] 135 0 0 135 / 456 9.6s Htbl concurrent [ ] 138 0 0 138 / 456 9.8s Htbl concurrent [ ] 142 0 0 142 / 456 10.1s Htbl concurrent [ ] 145 0 0 145 / 456 10.2s Htbl concurrent [ ] 148 0 0 148 / 456 10.3s Htbl concurrent [ ] 150 0 0 150 / 456 10.5s Htbl concurrent [ ] 153 0 0 153 / 456 10.7s Htbl concurrent [ ] 157 0 0 157 / 456 10.8s Htbl concurrent [ ] 159 0 0 159 / 456 11.1s Htbl concurrent [ ] 161 0 0 161 / 456 11.3s Htbl concurrent [ ] 164 0 0 164 / 456 11.4s Htbl concurrent [ ] 166 0 0 166 / 456 11.5s Htbl concurrent [ ] 169 0 0 169 / 456 11.7s Htbl concurrent [ ] 172 0 0 172 / 456 12.0s Htbl concurrent [ ] 173 0 0 173 / 456 12.3s Htbl concurrent [ ] 174 0 0 174 / 456 12.4s Htbl concurrent [ ] 177 0 0 177 / 456 12.8s Htbl concurrent [ ] 180 0 0 180 / 456 13.2s Htbl concurrent [ ] 183 0 0 183 / 456 13.3s Htbl concurrent [ ] 186 0 0 186 / 456 13.5s Htbl concurrent [ ] 188 0 0 188 / 456 13.6s Htbl concurrent [ ] 191 0 0 191 / 456 13.7s Htbl concurrent [ ] 192 0 0 192 / 456 14.1s Htbl concurrent [ ] 195 0 0 195 / 456 14.3s Htbl concurrent [ ] 198 0 0 198 / 456 14.4s Htbl concurrent [ ] 201 0 0 201 / 456 14.9s Htbl concurrent [ ] 204 0 0 204 / 456 15.0s Htbl concurrent [ ] 206 0 0 206 / 456 15.4s Htbl concurrent [ ] 209 0 0 209 / 456 15.9s Htbl concurrent [ ] 211 0 0 211 / 456 16.2s Htbl concurrent [ ] 213 0 0 213 / 456 16.3s Htbl concurrent [ ] 215 0 0 215 / 456 16.7s Htbl concurrent [ ] 217 0 0 217 / 456 16.9s Htbl concurrent [ ] 219 0 0 219 / 456 17.0s Htbl concurrent [ ] 223 0 0 223 / 456 17.1s Htbl concurrent [ ] 226 0 0 226 / 456 17.2s Htbl concurrent [ ] 228 0 0 228 / 456 17.6s Htbl concurrent [ ] 230 0 0 230 / 456 17.7s Htbl concurrent [ ] 233 0 0 233 / 456 17.8s Htbl concurrent [ ] 236 0 0 236 / 456 17.9s Htbl concurrent [ ] 238 0 0 238 / 456 18.3s Htbl concurrent [ ] 242 0 0 242 / 456 18.4s Htbl concurrent [ ] 245 0 0 245 / 456 18.5s Htbl concurrent [ ] 249 0 0 249 / 456 18.6s Htbl concurrent [ ] 250 0 0 250 / 456 18.9s Htbl concurrent [ ] 252 0 0 252 / 456 19.0s Htbl concurrent [ ] 256 0 0 256 / 456 19.4s Htbl concurrent [ ] 258 0 0 258 / 456 19.5s Htbl concurrent [ ] 259 0 0 259 / 456 19.7s Htbl concurrent [ ] 262 0 0 262 / 456 19.8s Htbl concurrent [ ] 265 0 0 265 / 456 20.0s Htbl concurrent [ ] 267 0 0 267 / 456 20.1s Htbl concurrent [ ] 270 0 0 270 / 456 20.6s Htbl concurrent [ ] 272 0 0 272 / 456 20.7s Htbl concurrent [ ] 274 0 0 274 / 456 20.8s Htbl concurrent [ ] 276 0 0 276 / 456 21.0s Htbl concurrent [ ] 278 0 0 278 / 456 21.1s Htbl concurrent [ ] 281 0 0 281 / 456 21.2s Htbl concurrent [ ] 284 0 0 284 / 456 21.4s Htbl concurrent [ ] 286 0 0 286 / 456 21.5s Htbl concurrent [ ] 288 0 0 288 / 456 21.6s Htbl concurrent [ ] 290 0 0 290 / 456 21.8s Htbl concurrent [ ] 291 0 0 291 / 456 21.9s Htbl concurrent [ ] 294 0 0 294 / 456 22.0s Htbl concurrent [ ] 297 0 0 297 / 456 22.1s Htbl concurrent [ ] 300 0 0 300 / 456 22.3s Htbl concurrent [ ] 303 0 0 303 / 456 22.4s Htbl concurrent [ ] 306 0 0 306 / 456 22.5s Htbl concurrent [ ] 308 0 0 308 / 456 22.9s Htbl concurrent [ ] 311 0 0 311 / 456 23.0s Htbl concurrent [ ] 314 0 0 314 / 456 23.1s Htbl concurrent [ ] 316 0 0 316 / 456 23.3s Htbl concurrent [ ] 319 0 0 319 / 456 23.4s Htbl concurrent [ ] 322 0 0 322 / 456 23.6s Htbl concurrent [ ] 323 0 0 323 / 456 23.8s Htbl concurrent [ ] 326 0 0 326 / 456 23.9s Htbl concurrent [ ] 328 0 0 328 / 456 24.1s Htbl concurrent [ ] 330 0 0 330 / 456 24.2s Htbl concurrent [ ] 334 0 0 334 / 456 24.4s Htbl concurrent [ ] 338 0 0 338 / 456 24.5s Htbl concurrent [ ] 340 0 0 340 / 456 25.1s Htbl concurrent [ ] 343 0 0 343 / 456 25.2s Htbl concurrent [ ] 345 0 0 345 / 456 25.3s Htbl concurrent [ ] 346 0 0 346 / 456 25.6s Htbl concurrent [ ] 348 0 0 348 / 456 25.7s Htbl concurrent [ ] 349 0 0 349 / 456 26.0s Htbl concurrent [ ] 350 0 0 350 / 456 26.3s Htbl concurrent [ ] 352 0 0 352 / 456 26.4s Htbl concurrent [ ] 355 0 0 355 / 456 26.5s Htbl concurrent [ ] 357 0 0 357 / 456 26.6s Htbl concurrent [ ] 358 0 0 358 / 456 26.8s Htbl concurrent [ ] 361 0 0 361 / 456 26.9s Htbl concurrent [ ] 364 0 0 364 / 456 27.2s Htbl concurrent [ ] 368 0 0 368 / 456 27.3s Htbl concurrent [ ] 371 0 0 371 / 456 27.5s Htbl concurrent [ ] 373 0 0 373 / 456 27.7s Htbl concurrent [ ] 376 0 0 376 / 456 27.9s Htbl concurrent [ ] 379 0 0 379 / 456 28.0s Htbl concurrent [ ] 383 0 0 383 / 456 28.2s Htbl concurrent [ ] 386 0 0 386 / 456 28.3s Htbl concurrent [ ] 389 0 0 389 / 456 28.7s Htbl concurrent [ ] 390 0 0 390 / 456 28.8s Htbl concurrent [ ] 393 0 0 393 / 456 29.0s Htbl concurrent [ ] 396 0 0 396 / 456 29.1s Htbl concurrent [ ] 398 0 0 398 / 456 29.2s Htbl concurrent [ ] 401 0 0 401 / 456 29.4s Htbl concurrent [ ] 403 0 0 403 / 456 29.6s Htbl concurrent [ ] 405 0 0 405 / 456 29.8s Htbl concurrent [ ] 409 0 0 409 / 456 30.2s Htbl concurrent [ ] 411 0 0 411 / 456 30.3s Htbl concurrent [ ] 414 0 0 414 / 456 30.4s Htbl concurrent [ ] 417 0 0 417 / 456 30.6s Htbl concurrent [ ] 419 0 0 419 / 456 30.7s Htbl concurrent [ ] 421 0 0 421 / 456 30.8s Htbl concurrent [ ] 424 0 0 424 / 456 30.9s Htbl concurrent [ ] 427 0 0 427 / 456 31.0s Htbl concurrent [ ] 429 0 0 429 / 456 31.2s Htbl concurrent [ ] 431 0 0 431 / 456 31.3s Htbl concurrent [ ] 434 0 0 434 / 456 31.4s Htbl concurrent [ ] 437 0 0 437 / 456 31.6s Htbl concurrent [ ] 440 0 0 440 / 456 31.9s Htbl concurrent [ ] 443 0 0 443 / 456 32.1s Htbl concurrent [ ] 446 0 0 446 / 456 32.2s Htbl concurrent [ ] 448 0 0 448 / 456 32.4s Htbl concurrent [ ] 451 0 0 451 / 456 32.5s Htbl concurrent [ ] 454 0 0 454 / 456 32.6s Htbl concurrent [ ] 456 0 0 456 / 456 32.7s Htbl concurrent [✓] 456 0 0 456 / 456 32.7s Htbl concurrent ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_lock.exe) random seed: 4511777686623126908 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Lock sequential [ ] 0 0 0 0 / 32 0.0s Lock sequential (generating) [✓] 32 0 0 32 / 32 0.0s Lock sequential [ ] 0 0 0 0 / 32 0.0s Lock concurrent [ ] 3 0 0 3 / 32 0.1s Lock concurrent [ ] 5 0 0 5 / 32 0.5s Lock concurrent [ ] 8 0 0 8 / 32 0.6s Lock concurrent [ ] 11 0 0 11 / 32 0.7s Lock concurrent [ ] 14 0 0 14 / 32 0.9s Lock concurrent [ ] 15 0 0 15 / 32 1.1s Lock concurrent [ ] 18 0 0 18 / 32 1.2s Lock concurrent [ ] 20 0 0 20 / 32 1.4s Lock concurrent [ ] 23 0 0 23 / 32 1.5s Lock concurrent [ ] 26 0 0 26 / 32 1.6s Lock concurrent [ ] 27 0 0 27 / 32 1.9s Lock concurrent [ ] 29 0 0 29 / 32 2.0s Lock concurrent [ ] 31 0 0 31 / 32 2.3s Lock concurrent [✓] 32 0 0 32 / 32 2.4s Lock concurrent ================================================================================ success (ran 2 tests) random seed: 221777973642221700 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Lock sequential [✓] 64 0 0 64 / 64 0.0s Lock sequential [ ] 0 0 0 0 / 64 0.0s Lock concurrent [ ] 1 0 0 1 / 64 0.0s Lock concurrent [ ] 4 0 0 4 / 64 0.2s Lock concurrent [ ] 7 0 0 7 / 64 0.3s Lock concurrent [ ] 11 0 0 11 / 64 0.4s Lock concurrent [ ] 14 0 0 14 / 64 0.6s Lock concurrent [ ] 15 0 0 15 / 64 0.7s Lock concurrent [ ] 16 0 0 16 / 64 1.0s Lock concurrent [ ] 20 0 0 20 / 64 1.1s Lock concurrent [ ] 22 0 0 22 / 64 1.3s Lock concurrent [ ] 24 0 0 24 / 64 1.4s Lock concurrent [ ] 27 0 0 27 / 64 1.5s Lock concurrent [ ] 30 0 0 30 / 64 1.7s Lock concurrent [ ] 32 0 0 32 / 64 1.8s Lock concurrent [ ] 35 0 0 35 / 64 2.0s Lock concurrent [ ] 36 0 0 36 / 64 2.2s Lock concurrent [ ] 37 0 0 37 / 64 2.5s Lock concurrent [ ] 39 0 0 39 / 64 2.6s Lock concurrent [ ] 43 0 0 43 / 64 2.7s Lock concurrent [ ] 44 0 0 44 / 64 2.9s Lock concurrent [ ] 48 0 0 48 / 64 3.0s Lock concurrent [ ] 50 0 0 50 / 64 3.2s Lock concurrent [ ] 52 0 0 52 / 64 3.3s Lock concurrent [ ] 53 0 0 53 / 64 3.5s Lock concurrent [ ] 56 0 0 56 / 64 3.6s Lock concurrent [ ] 60 0 0 60 / 64 3.7s Lock concurrent [ ] 61 0 0 61 / 64 4.2s Lock concurrent [ ] 64 0 0 64 / 64 4.3s Lock concurrent [✓] 64 0 0 64 / 64 4.3s Lock concurrent ================================================================================ success (ran 2 tests) random seed: 4426380712822917317 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Lock sequential [✓] 128 0 0 128 / 128 0.0s Lock sequential [ ] 0 0 0 0 / 128 0.0s Lock concurrent [ ] 3 0 0 3 / 128 0.1s Lock concurrent [ ] 6 0 0 6 / 128 0.4s Lock concurrent [ ] 7 0 0 7 / 128 0.7s Lock concurrent [ ] 8 0 0 8 / 128 0.9s Lock concurrent [ ] 11 0 0 11 / 128 1.0s Lock concurrent [ ] 14 0 0 14 / 128 1.1s Lock concurrent [ ] 18 0 0 18 / 128 1.3s Lock concurrent [ ] 21 0 0 21 / 128 1.4s Lock concurrent [ ] 22 0 0 22 / 128 1.9s Lock concurrent [ ] 24 0 0 24 / 128 2.0s Lock concurrent [ ] 27 0 0 27 / 128 2.1s Lock concurrent [ ] 30 0 0 30 / 128 2.2s Lock concurrent [ ] 33 0 0 33 / 128 2.3s Lock concurrent [ ] 37 0 0 37 / 128 2.5s Lock concurrent [ ] 40 0 0 40 / 128 2.6s Lock concurrent [ ] 43 0 0 43 / 128 2.7s Lock concurrent [ ] 46 0 0 46 / 128 2.8s Lock concurrent [ ] 47 0 0 47 / 128 2.9s Lock concurrent [ ] 48 0 0 48 / 128 3.1s Lock concurrent [ ] 49 0 0 49 / 128 3.3s Lock concurrent [ ] 51 0 0 51 / 128 3.4s Lock concurrent [ ] 54 0 0 54 / 128 3.5s Lock concurrent [ ] 57 0 0 57 / 128 3.7s Lock concurrent [ ] 59 0 0 59 / 128 3.8s Lock concurrent [ ] 62 0 0 62 / 128 3.9s Lock concurrent [ ] 65 0 0 65 / 128 4.0s Lock concurrent [ ] 67 0 0 67 / 128 4.2s Lock concurrent [ ] 69 0 0 69 / 128 4.3s Lock concurrent [ ] 72 0 0 72 / 128 4.4s Lock concurrent [ ] 74 0 0 74 / 128 4.5s Lock concurrent [ ] 77 0 0 77 / 128 4.6s Lock concurrent [ ] 81 0 0 81 / 128 4.7s Lock concurrent [ ] 83 0 0 83 / 128 4.9s Lock concurrent [ ] 86 0 0 86 / 128 5.0s Lock concurrent [ ] 89 0 0 89 / 128 5.1s Lock concurrent [ ] 91 0 0 91 / 128 5.3s Lock concurrent [ ] 94 0 0 94 / 128 5.4s Lock concurrent [ ] 96 0 0 96 / 128 5.5s Lock concurrent [ ] 100 0 0 100 / 128 5.7s Lock concurrent [ ] 104 0 0 104 / 128 5.8s Lock concurrent [ ] 105 0 0 105 / 128 6.0s Lock concurrent [ ] 107 0 0 107 / 128 6.3s Lock concurrent [ ] 110 0 0 110 / 128 6.5s Lock concurrent [ ] 112 0 0 112 / 128 6.8s Lock concurrent [ ] 115 0 0 115 / 128 7.0s Lock concurrent [ ] 117 0 0 117 / 128 7.1s Lock concurrent [ ] 120 0 0 120 / 128 7.2s Lock concurrent [ ] 124 0 0 124 / 128 7.3s Lock concurrent [ ] 127 0 0 127 / 128 7.4s Lock concurrent [✓] 128 0 0 128 / 128 7.5s Lock concurrent ================================================================================ success (ran 2 tests) random seed: 2367268026629327609 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Lock sequential [✓] 256 0 0 256 / 256 0.0s Lock sequential [ ] 0 0 0 0 / 256 0.0s Lock concurrent [ ] 1 0 0 1 / 256 0.0s Lock concurrent [ ] 3 0 0 3 / 256 0.2s Lock concurrent [ ] 7 0 0 7 / 256 0.4s Lock concurrent [ ] 10 0 0 10 / 256 0.5s Lock concurrent [ ] 12 0 0 12 / 256 0.9s Lock concurrent [ ] 16 0 0 16 / 256 1.0s Lock concurrent [ ] 17 0 0 17 / 256 1.2s Lock concurrent [ ] 19 0 0 19 / 256 1.6s Lock concurrent [ ] 21 0 0 21 / 256 1.9s Lock concurrent [ ] 25 0 0 25 / 256 2.0s Lock concurrent [ ] 29 0 0 29 / 256 2.2s Lock concurrent [ ] 31 0 0 31 / 256 2.3s Lock concurrent [ ] 34 0 0 34 / 256 2.4s Lock concurrent [ ] 37 0 0 37 / 256 2.5s Lock concurrent [ ] 40 0 0 40 / 256 2.7s Lock concurrent [ ] 43 0 0 43 / 256 3.0s Lock concurrent [ ] 44 0 0 44 / 256 3.2s Lock concurrent [ ] 47 0 0 47 / 256 3.3s Lock concurrent [ ] 49 0 0 49 / 256 3.4s Lock concurrent [ ] 52 0 0 52 / 256 3.5s Lock concurrent [ ] 54 0 0 54 / 256 3.6s Lock concurrent [ ] 57 0 0 57 / 256 3.8s Lock concurrent [ ] 59 0 0 59 / 256 4.0s Lock concurrent [ ] 62 0 0 62 / 256 4.1s Lock concurrent [ ] 65 0 0 65 / 256 4.3s Lock concurrent [ ] 69 0 0 69 / 256 4.5s Lock concurrent [ ] 71 0 0 71 / 256 4.6s Lock concurrent [ ] 74 0 0 74 / 256 4.7s Lock concurrent [ ] 77 0 0 77 / 256 4.8s Lock concurrent [ ] 80 0 0 80 / 256 5.0s Lock concurrent [ ] 83 0 0 83 / 256 5.1s Lock concurrent [ ] 86 0 0 86 / 256 5.4s Lock concurrent [ ] 88 0 0 88 / 256 5.5s Lock concurrent [ ] 90 0 0 90 / 256 5.6s Lock concurrent [ ] 93 0 0 93 / 256 6.0s Lock concurrent [ ] 96 0 0 96 / 256 6.2s Lock concurrent [ ] 100 0 0 100 / 256 6.3s Lock concurrent [ ] 102 0 0 102 / 256 6.4s Lock concurrent [ ] 105 0 0 105 / 256 6.6s Lock concurrent [ ] 107 0 0 107 / 256 6.7s Lock concurrent [ ] 109 0 0 109 / 256 7.1s Lock concurrent [ ] 111 0 0 111 / 256 7.2s Lock concurrent [ ] 114 0 0 114 / 256 7.3s Lock concurrent [ ] 117 0 0 117 / 256 7.4s Lock concurrent [ ] 119 0 0 119 / 256 7.6s Lock concurrent [ ] 121 0 0 121 / 256 7.8s Lock concurrent [ ] 123 0 0 123 / 256 7.9s Lock concurrent [ ] 125 0 0 125 / 256 8.0s Lock concurrent [ ] 128 0 0 128 / 256 8.1s Lock concurrent [ ] 131 0 0 131 / 256 8.3s Lock concurrent [ ] 134 0 0 134 / 256 8.4s Lock concurrent [ ] 135 0 0 135 / 256 8.6s Lock concurrent [ ] 137 0 0 137 / 256 8.8s Lock concurrent [ ] 139 0 0 139 / 256 8.9s Lock concurrent [ ] 142 0 0 142 / 256 9.0s Lock concurrent [ ] 144 0 0 144 / 256 9.1s Lock concurrent [ ] 147 0 0 147 / 256 9.2s Lock concurrent [ ] 151 0 0 151 / 256 9.3s Lock concurrent [ ] 154 0 0 154 / 256 9.5s Lock concurrent [ ] 156 0 0 156 / 256 9.7s Lock concurrent [ ] 159 0 0 159 / 256 9.8s Lock concurrent [ ] 162 0 0 162 / 256 9.9s Lock concurrent [ ] 163 0 0 163 / 256 10.1s Lock concurrent [ ] 166 0 0 166 / 256 10.3s Lock concurrent [ ] 168 0 0 168 / 256 10.4s Lock concurrent [ ] 171 0 0 171 / 256 10.5s Lock concurrent [ ] 175 0 0 175 / 256 10.6s Lock concurrent [ ] 178 0 0 178 / 256 10.8s Lock concurrent [ ] 179 0 0 179 / 256 10.9s Lock concurrent [ ] 181 0 0 181 / 256 11.1s Lock concurrent [ ] 182 0 0 182 / 256 11.2s Lock concurrent [ ] 183 0 0 183 / 256 11.4s Lock concurrent [ ] 185 0 0 185 / 256 11.5s Lock concurrent [ ] 188 0 0 188 / 256 11.6s Lock concurrent [ ] 191 0 0 191 / 256 11.7s Lock concurrent [ ] 193 0 0 193 / 256 12.0s Lock concurrent [ ] 195 0 0 195 / 256 12.2s Lock concurrent [ ] 198 0 0 198 / 256 12.3s Lock concurrent [ ] 202 0 0 202 / 256 12.4s Lock concurrent [ ] 206 0 0 206 / 256 12.5s Lock concurrent [ ] 210 0 0 210 / 256 12.7s Lock concurrent [ ] 214 0 0 214 / 256 12.9s Lock concurrent [ ] 215 0 0 215 / 256 13.0s Lock concurrent [ ] 219 0 0 219 / 256 13.3s Lock concurrent [ ] 222 0 0 222 / 256 13.4s Lock concurrent [ ] 225 0 0 225 / 256 13.6s Lock concurrent [ ] 228 0 0 228 / 256 13.7s Lock concurrent [ ] 229 0 0 229 / 256 14.0s Lock concurrent [ ] 232 0 0 232 / 256 14.1s Lock concurrent [ ] 236 0 0 236 / 256 14.2s Lock concurrent [ ] 240 0 0 240 / 256 14.3s Lock concurrent [ ] 244 0 0 244 / 256 14.4s Lock concurrent [ ] 246 0 0 246 / 256 14.6s Lock concurrent [ ] 248 0 0 248 / 256 14.7s Lock concurrent [ ] 251 0 0 251 / 256 14.8s Lock concurrent [ ] 253 0 0 253 / 256 14.9s Lock concurrent [ ] 255 0 0 255 / 256 15.0s Lock concurrent [✓] 256 0 0 256 / 256 15.0s Lock concurrent ================================================================================ success (ran 2 tests) random seed: 3173012698240396295 generated error fail pass / total time test name [ ] 0 0 0 0 / 505 0.0s Lock sequential [✓] 505 0 0 505 / 505 0.0s Lock sequential [ ] 0 0 0 0 / 505 0.0s Lock concurrent [ ] 2 0 0 2 / 505 0.1s Lock concurrent [ ] 4 0 0 4 / 505 0.2s Lock concurrent [ ] 6 0 0 6 / 505 0.3s Lock concurrent [ ] 9 0 0 9 / 505 0.5s Lock concurrent [ ] 12 0 0 12 / 505 0.6s Lock concurrent [ ] 16 0 0 16 / 505 0.7s Lock concurrent [ ] 18 0 0 18 / 505 0.9s Lock concurrent [ ] 20 0 0 20 / 505 1.0s Lock concurrent [ ] 22 0 0 22 / 505 1.1s Lock concurrent [ ] 24 0 0 24 / 505 1.4s Lock concurrent [ ] 26 0 0 26 / 505 1.5s Lock concurrent [ ] 27 0 0 27 / 505 1.8s Lock concurrent [ ] 29 0 0 29 / 505 1.9s Lock concurrent [ ] 32 0 0 32 / 505 2.0s Lock concurrent [ ] 36 0 0 36 / 505 2.2s Lock concurrent [ ] 39 0 0 39 / 505 2.3s Lock concurrent [ ] 42 0 0 42 / 505 2.4s Lock concurrent [ ] 43 0 0 43 / 505 2.6s Lock concurrent [ ] 46 0 0 46 / 505 2.7s Lock concurrent [ ] 50 0 0 50 / 505 2.8s Lock concurrent [ ] 53 0 0 53 / 505 3.0s Lock concurrent [ ] 56 0 0 56 / 505 3.2s Lock concurrent [ ] 59 0 0 59 / 505 3.3s Lock concurrent [ ] 62 0 0 62 / 505 3.4s Lock concurrent [ ] 65 0 0 65 / 505 3.7s Lock concurrent [ ] 67 0 0 67 / 505 3.8s Lock concurrent [ ] 71 0 0 71 / 505 4.2s Lock concurrent [ ] 75 0 0 75 / 505 4.4s Lock concurrent [ ] 77 0 0 77 / 505 4.5s Lock concurrent [ ] 79 0 0 79 / 505 4.6s Lock concurrent [ ] 80 0 0 80 / 505 4.7s Lock concurrent [ ] 82 0 0 82 / 505 4.9s Lock concurrent [ ] 85 0 0 85 / 505 5.0s Lock concurrent [ ] 88 0 0 88 / 505 5.3s Lock concurrent [ ] 90 0 0 90 / 505 5.6s Lock concurrent [ ] 93 0 0 93 / 505 5.7s Lock concurrent [ ] 95 0 0 95 / 505 5.8s Lock concurrent [ ] 96 0 0 96 / 505 6.0s Lock concurrent [ ] 98 0 0 98 / 505 6.1s Lock concurrent [ ] 101 0 0 101 / 505 6.2s Lock concurrent [ ] 102 0 0 102 / 505 6.6s Lock concurrent [ ] 105 0 0 105 / 505 6.7s Lock concurrent [ ] 107 0 0 107 / 505 6.9s Lock concurrent [ ] 110 0 0 110 / 505 7.0s Lock concurrent [ ] 113 0 0 113 / 505 7.1s Lock concurrent [ ] 114 0 0 114 / 505 7.3s Lock concurrent [ ] 116 0 0 116 / 505 7.6s Lock concurrent [ ] 117 0 0 117 / 505 7.7s Lock concurrent [ ] 119 0 0 119 / 505 7.9s Lock concurrent [ ] 122 0 0 122 / 505 8.1s Lock concurrent [ ] 124 0 0 124 / 505 8.2s Lock concurrent [ ] 127 0 0 127 / 505 8.3s Lock concurrent [ ] 129 0 0 129 / 505 8.5s Lock concurrent [ ] 131 0 0 131 / 505 8.6s Lock concurrent [ ] 133 0 0 133 / 505 8.7s Lock concurrent [ ] 135 0 0 135 / 505 8.9s Lock concurrent [ ] 138 0 0 138 / 505 9.2s Lock concurrent [ ] 141 0 0 141 / 505 9.4s Lock concurrent [ ] 143 0 0 143 / 505 9.6s Lock concurrent [ ] 145 0 0 145 / 505 9.7s Lock concurrent [ ] 147 0 0 147 / 505 9.8s Lock concurrent [ ] 149 0 0 149 / 505 9.9s Lock concurrent [ ] 151 0 0 151 / 505 10.2s Lock concurrent [ ] 153 0 0 153 / 505 10.3s Lock concurrent [ ] 154 0 0 154 / 505 10.6s Lock concurrent [ ] 156 0 0 156 / 505 10.7s Lock concurrent [ ] 157 0 0 157 / 505 10.9s Lock concurrent [ ] 159 0 0 159 / 505 11.1s Lock concurrent [ ] 161 0 0 161 / 505 11.3s Lock concurrent [ ] 164 0 0 164 / 505 11.5s Lock concurrent [ ] 167 0 0 167 / 505 11.6s Lock concurrent [ ] 170 0 0 170 / 505 11.7s Lock concurrent [ ] 173 0 0 173 / 505 11.9s Lock concurrent [ ] 176 0 0 176 / 505 12.0s Lock concurrent [ ] 178 0 0 178 / 505 12.3s Lock concurrent [ ] 181 0 0 181 / 505 12.4s Lock concurrent [ ] 184 0 0 184 / 505 12.5s Lock concurrent [ ] 188 0 0 188 / 505 12.7s Lock concurrent [ ] 190 0 0 190 / 505 12.8s Lock concurrent [ ] 192 0 0 192 / 505 12.9s Lock concurrent [ ] 194 0 0 194 / 505 13.0s Lock concurrent [ ] 197 0 0 197 / 505 13.3s Lock concurrent [ ] 199 0 0 199 / 505 13.4s Lock concurrent [ ] 202 0 0 202 / 505 13.5s Lock concurrent [ ] 205 0 0 205 / 505 13.7s Lock concurrent [ ] 206 0 0 206 / 505 13.8s Lock concurrent [ ] 208 0 0 208 / 505 14.1s Lock concurrent [ ] 210 0 0 210 / 505 14.3s Lock concurrent [ ] 213 0 0 213 / 505 14.4s Lock concurrent [ ] 215 0 0 215 / 505 14.5s Lock concurrent [ ] 217 0 0 217 / 505 14.7s Lock concurrent [ ] 220 0 0 220 / 505 14.8s Lock concurrent [ ] 223 0 0 223 / 505 14.9s Lock concurrent [ ] 225 0 0 225 / 505 15.0s Lock concurrent [ ] 227 0 0 227 / 505 15.1s Lock concurrent [ ] 229 0 0 229 / 505 15.3s Lock concurrent [ ] 232 0 0 232 / 505 15.4s Lock concurrent [ ] 234 0 0 234 / 505 15.6s Lock concurrent [ ] 237 0 0 237 / 505 15.8s Lock concurrent [ ] 241 0 0 241 / 505 15.9s Lock concurrent [ ] 243 0 0 243 / 505 16.0s Lock concurrent [ ] 244 0 0 244 / 505 16.1s Lock concurrent [ ] 246 0 0 246 / 505 16.3s Lock concurrent [ ] 249 0 0 249 / 505 16.4s Lock concurrent [ ] 253 0 0 253 / 505 16.5s Lock concurrent [ ] 256 0 0 256 / 505 16.8s Lock concurrent [ ] 260 0 0 260 / 505 16.9s Lock concurrent [ ] 261 0 0 261 / 505 17.2s Lock concurrent [ ] 264 0 0 264 / 505 17.4s Lock concurrent [ ] 266 0 0 266 / 505 17.5s Lock concurrent [ ] 268 0 0 268 / 505 17.8s Lock concurrent [ ] 270 0 0 270 / 505 17.9s Lock concurrent [ ] 274 0 0 274 / 505 18.0s Lock concurrent [ ] 278 0 0 278 / 505 18.1s Lock concurrent [ ] 281 0 0 281 / 505 18.3s Lock concurrent [ ] 285 0 0 285 / 505 18.4s Lock concurrent [ ] 288 0 0 288 / 505 18.5s Lock concurrent [ ] 290 0 0 290 / 505 18.6s Lock concurrent [ ] 292 0 0 292 / 505 18.8s Lock concurrent [ ] 294 0 0 294 / 505 18.9s Lock concurrent [ ] 298 0 0 298 / 505 19.2s Lock concurrent [ ] 301 0 0 301 / 505 19.3s Lock concurrent [ ] 305 0 0 305 / 505 19.5s Lock concurrent [ ] 309 0 0 309 / 505 19.6s Lock concurrent [ ] 312 0 0 312 / 505 19.7s Lock concurrent [ ] 314 0 0 314 / 505 20.0s Lock concurrent [ ] 317 0 0 317 / 505 20.2s Lock concurrent [ ] 319 0 0 319 / 505 20.5s Lock concurrent [ ] 320 0 0 320 / 505 20.7s Lock concurrent [ ] 324 0 0 324 / 505 20.8s Lock concurrent [ ] 327 0 0 327 / 505 21.0s Lock concurrent [ ] 330 0 0 330 / 505 21.1s Lock concurrent [ ] 333 0 0 333 / 505 21.2s Lock concurrent [ ] 334 0 0 334 / 505 21.4s Lock concurrent [ ] 338 0 0 338 / 505 21.5s Lock concurrent [ ] 340 0 0 340 / 505 21.6s Lock concurrent [ ] 341 0 0 341 / 505 21.9s Lock concurrent [ ] 344 0 0 344 / 505 22.0s Lock concurrent [ ] 346 0 0 346 / 505 22.1s Lock concurrent [ ] 349 0 0 349 / 505 22.2s Lock concurrent [ ] 352 0 0 352 / 505 22.3s Lock concurrent [ ] 355 0 0 355 / 505 22.5s Lock concurrent [ ] 359 0 0 359 / 505 22.6s Lock concurrent [ ] 363 0 0 363 / 505 22.8s Lock concurrent [ ] 366 0 0 366 / 505 22.9s Lock concurrent [ ] 368 0 0 368 / 505 23.0s Lock concurrent [ ] 370 0 0 370 / 505 23.2s Lock concurrent [ ] 373 0 0 373 / 505 23.3s Lock concurrent [ ] 376 0 0 376 / 505 23.5s Lock concurrent [ ] 378 0 0 378 / 505 23.6s Lock concurrent [ ] 379 0 0 379 / 505 23.8s Lock concurrent [ ] 381 0 0 381 / 505 24.0s Lock concurrent [ ] 383 0 0 383 / 505 24.3s Lock concurrent [ ] 385 0 0 385 / 505 24.5s Lock concurrent [ ] 388 0 0 388 / 505 24.7s Lock concurrent [ ] 389 0 0 389 / 505 24.8s Lock concurrent [ ] 391 0 0 391 / 505 25.1s Lock concurrent [ ] 394 0 0 394 / 505 25.2s Lock concurrent [ ] 397 0 0 397 / 505 25.4s Lock concurrent [ ] 400 0 0 400 / 505 25.5s Lock concurrent [ ] 404 0 0 404 / 505 25.6s Lock concurrent [ ] 406 0 0 406 / 505 25.7s Lock concurrent [ ] 408 0 0 408 / 505 25.8s Lock concurrent [ ] 411 0 0 411 / 505 25.9s Lock concurrent [ ] 414 0 0 414 / 505 26.0s Lock concurrent [ ] 415 0 0 415 / 505 26.3s Lock concurrent [ ] 418 0 0 418 / 505 26.4s Lock concurrent [ ] 421 0 0 421 / 505 26.5s Lock concurrent [ ] 423 0 0 423 / 505 26.7s Lock concurrent [ ] 425 0 0 425 / 505 26.8s Lock concurrent [ ] 429 0 0 429 / 505 27.0s Lock concurrent [ ] 432 0 0 432 / 505 27.1s Lock concurrent [ ] 435 0 0 435 / 505 27.2s Lock concurrent [ ] 438 0 0 438 / 505 27.4s Lock concurrent [ ] 439 0 0 439 / 505 27.5s Lock concurrent [ ] 441 0 0 441 / 505 27.6s Lock concurrent [ ] 443 0 0 443 / 505 27.8s Lock concurrent [ ] 445 0 0 445 / 505 27.9s Lock concurrent [ ] 448 0 0 448 / 505 28.1s Lock concurrent [ ] 449 0 0 449 / 505 28.3s Lock concurrent [ ] 450 0 0 450 / 505 28.5s Lock concurrent [ ] 452 0 0 452 / 505 28.6s Lock concurrent [ ] 455 0 0 455 / 505 28.7s Lock concurrent [ ] 458 0 0 458 / 505 28.9s Lock concurrent [ ] 461 0 0 461 / 505 29.0s Lock concurrent [ ] 463 0 0 463 / 505 29.1s Lock concurrent [ ] 465 0 0 465 / 505 29.2s Lock concurrent [ ] 467 0 0 467 / 505 29.3s Lock concurrent [ ] 470 0 0 470 / 505 29.4s Lock concurrent [ ] 473 0 0 473 / 505 29.5s Lock concurrent [ ] 476 0 0 476 / 505 29.6s Lock concurrent [ ] 478 0 0 478 / 505 29.8s Lock concurrent [ ] 482 0 0 482 / 505 30.0s Lock concurrent [ ] 485 0 0 485 / 505 30.2s Lock concurrent [ ] 489 0 0 489 / 505 30.3s Lock concurrent [ ] 492 0 0 492 / 505 30.4s Lock concurrent [ ] 495 0 0 495 / 505 30.5s Lock concurrent [ ] 497 0 0 497 / 505 30.6s Lock concurrent [ ] 501 0 0 501 / 505 30.7s Lock concurrent [ ] 502 0 0 502 / 505 30.9s Lock concurrent [ ] 505 0 0 505 / 505 31.0s Lock concurrent [✓] 505 0 0 505 / 505 31.0s Lock concurrent ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_sem.exe) random seed: 3391171657135812002 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem sequential (generating) [✓] 32 0 0 32 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem concurrent [ ] 5 0 0 5 / 32 0.1s Sem concurrent [ ] 9 0 0 9 / 32 0.3s Sem concurrent [ ] 12 0 0 12 / 32 0.6s Sem concurrent [ ] 15 0 0 15 / 32 0.8s Sem concurrent [ ] 18 0 0 18 / 32 0.9s Sem concurrent [ ] 20 0 0 20 / 32 1.0s Sem concurrent [ ] 23 0 0 23 / 32 1.1s Sem concurrent [ ] 26 0 0 26 / 32 1.3s Sem concurrent [ ] 29 0 0 29 / 32 1.7s Sem concurrent [ ] 32 0 0 32 / 32 1.9s Sem concurrent [✓] 32 0 0 32 / 32 1.9s Sem concurrent ================================================================================ success (ran 2 tests) random seed: 3833015145154822542 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Sem sequential [✓] 64 0 0 64 / 64 0.0s Sem sequential [ ] 0 0 0 0 / 64 0.0s Sem concurrent [ ] 1 0 0 1 / 64 0.1s Sem concurrent [ ] 4 0 0 4 / 64 0.2s Sem concurrent [ ] 6 0 0 6 / 64 0.4s Sem concurrent [ ] 10 0 0 10 / 64 0.6s Sem concurrent [ ] 12 0 0 12 / 64 0.7s Sem concurrent [ ] 15 0 0 15 / 64 0.9s Sem concurrent [ ] 19 0 0 19 / 64 1.0s Sem concurrent [ ] 23 0 0 23 / 64 1.2s Sem concurrent [ ] 28 0 0 28 / 64 1.3s Sem concurrent [ ] 32 0 0 32 / 64 1.4s Sem concurrent [ ] 35 0 0 35 / 64 1.8s Sem concurrent [ ] 37 0 0 37 / 64 1.9s Sem concurrent [ ] 40 0 0 40 / 64 2.0s Sem concurrent [ ] 43 0 0 43 / 64 2.2s Sem concurrent [ ] 45 0 0 45 / 64 2.3s Sem concurrent [ ] 49 0 0 49 / 64 2.5s Sem concurrent [ ] 52 0 0 52 / 64 2.7s Sem concurrent [ ] 54 0 0 54 / 64 2.8s Sem concurrent [ ] 57 0 0 57 / 64 3.0s Sem concurrent [ ] 60 0 0 60 / 64 3.1s Sem concurrent [ ] 62 0 0 62 / 64 3.3s Sem concurrent [ ] 63 0 0 63 / 64 3.5s Sem concurrent [✓] 64 0 0 64 / 64 3.5s Sem concurrent ================================================================================ success (ran 2 tests) random seed: 4172430719551661066 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Sem sequential [✓] 128 0 0 128 / 128 0.0s Sem sequential [ ] 0 0 0 0 / 128 0.0s Sem concurrent [ ] 2 0 0 2 / 128 0.1s Sem concurrent [ ] 4 0 0 4 / 128 0.2s Sem concurrent [ ] 7 0 0 7 / 128 0.4s Sem concurrent [ ] 10 0 0 10 / 128 0.5s Sem concurrent [ ] 13 0 0 13 / 128 0.6s Sem concurrent [ ] 16 0 0 16 / 128 0.8s Sem concurrent [ ] 19 0 0 19 / 128 0.9s Sem concurrent [ ] 20 0 0 20 / 128 1.2s Sem concurrent [ ] 22 0 0 22 / 128 1.5s Sem concurrent [ ] 25 0 0 25 / 128 1.6s Sem concurrent [ ] 29 0 0 29 / 128 1.8s Sem concurrent [ ] 30 0 0 30 / 128 2.1s Sem concurrent [ ] 33 0 0 33 / 128 2.2s Sem concurrent [ ] 36 0 0 36 / 128 2.3s Sem concurrent [ ] 39 0 0 39 / 128 2.5s Sem concurrent [ ] 41 0 0 41 / 128 2.6s Sem concurrent [ ] 44 0 0 44 / 128 2.7s Sem concurrent [ ] 46 0 0 46 / 128 2.9s Sem concurrent [ ] 48 0 0 48 / 128 3.4s Sem concurrent [ ] 51 0 0 51 / 128 3.9s Sem concurrent [ ] 54 0 0 54 / 128 4.1s Sem concurrent [ ] 56 0 0 56 / 128 4.2s Sem concurrent [ ] 58 0 0 58 / 128 4.4s Sem concurrent [ ] 61 0 0 61 / 128 4.5s Sem concurrent [ ] 65 0 0 65 / 128 4.6s Sem concurrent [ ] 68 0 0 68 / 128 4.8s Sem concurrent [ ] 70 0 0 70 / 128 4.9s Sem concurrent [ ] 74 0 0 74 / 128 5.0s Sem concurrent [ ] 77 0 0 77 / 128 5.2s Sem concurrent [ ] 79 0 0 79 / 128 5.3s Sem concurrent [ ] 80 0 0 80 / 128 5.4s Sem concurrent [ ] 83 0 0 83 / 128 5.5s Sem concurrent [ ] 85 0 0 85 / 128 5.8s Sem concurrent [ ] 89 0 0 89 / 128 5.9s Sem concurrent [ ] 92 0 0 92 / 128 6.0s Sem concurrent [ ] 95 0 0 95 / 128 6.2s Sem concurrent [ ] 98 0 0 98 / 128 6.3s Sem concurrent [ ] 100 0 0 100 / 128 6.4s Sem concurrent [ ] 101 0 0 101 / 128 6.6s Sem concurrent [ ] 104 0 0 104 / 128 6.7s Sem concurrent [ ] 105 0 0 105 / 128 6.8s Sem concurrent [ ] 107 0 0 107 / 128 7.0s Sem concurrent [ ] 109 0 0 109 / 128 7.1s Sem concurrent [ ] 111 0 0 111 / 128 7.2s Sem concurrent [ ] 115 0 0 115 / 128 7.6s Sem concurrent [ ] 116 0 0 116 / 128 7.7s Sem concurrent [ ] 118 0 0 118 / 128 7.9s Sem concurrent [ ] 121 0 0 121 / 128 8.1s Sem concurrent [ ] 124 0 0 124 / 128 8.2s Sem concurrent [ ] 127 0 0 127 / 128 8.3s Sem concurrent [✓] 128 0 0 128 / 128 8.3s Sem concurrent ================================================================================ success (ran 2 tests) random seed: 558436859464040286 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Sem sequential [✓] 256 0 0 256 / 256 0.0s Sem sequential [ ] 0 0 0 0 / 256 0.0s Sem concurrent [ ] 3 0 0 3 / 256 0.1s Sem concurrent [ ] 4 0 0 4 / 256 0.2s Sem concurrent [ ] 7 0 0 7 / 256 0.4s Sem concurrent [ ] 9 0 0 9 / 256 0.5s Sem concurrent [ ] 12 0 0 12 / 256 0.6s Sem concurrent [ ] 15 0 0 15 / 256 0.8s Sem concurrent [ ] 19 0 0 19 / 256 0.9s Sem concurrent [ ] 22 0 0 22 / 256 1.1s Sem concurrent [ ] 24 0 0 24 / 256 1.2s Sem concurrent [ ] 26 0 0 26 / 256 1.3s Sem concurrent [ ] 27 0 0 27 / 256 1.5s Sem concurrent [ ] 28 0 0 28 / 256 1.6s Sem concurrent [ ] 31 0 0 31 / 256 1.7s Sem concurrent [ ] 33 0 0 33 / 256 1.8s Sem concurrent [ ] 35 0 0 35 / 256 2.1s Sem concurrent [ ] 37 0 0 37 / 256 2.2s Sem concurrent [ ] 40 0 0 40 / 256 2.4s Sem concurrent [ ] 42 0 0 42 / 256 2.6s Sem concurrent [ ] 44 0 0 44 / 256 2.7s Sem concurrent [ ] 46 0 0 46 / 256 2.9s Sem concurrent [ ] 49 0 0 49 / 256 3.0s Sem concurrent [ ] 52 0 0 52 / 256 3.2s Sem concurrent [ ] 53 0 0 53 / 256 3.4s Sem concurrent [ ] 55 0 0 55 / 256 3.6s Sem concurrent [ ] 56 0 0 56 / 256 3.9s Sem concurrent [ ] 59 0 0 59 / 256 4.1s Sem concurrent [ ] 62 0 0 62 / 256 4.2s Sem concurrent [ ] 64 0 0 64 / 256 4.3s Sem concurrent [ ] 66 0 0 66 / 256 4.4s Sem concurrent [ ] 69 0 0 69 / 256 4.7s Sem concurrent [ ] 72 0 0 72 / 256 4.8s Sem concurrent [ ] 76 0 0 76 / 256 4.9s Sem concurrent [ ] 79 0 0 79 / 256 5.2s Sem concurrent [ ] 82 0 0 82 / 256 5.3s Sem concurrent [ ] 86 0 0 86 / 256 5.4s Sem concurrent [ ] 89 0 0 89 / 256 5.5s Sem concurrent [ ] 92 0 0 92 / 256 5.7s Sem concurrent [ ] 97 0 0 97 / 256 5.8s Sem concurrent [ ] 100 0 0 100 / 256 5.9s Sem concurrent [ ] 103 0 0 103 / 256 6.0s Sem concurrent [ ] 107 0 0 107 / 256 6.2s Sem concurrent [ ] 109 0 0 109 / 256 6.3s Sem concurrent [ ] 112 0 0 112 / 256 6.4s Sem concurrent [ ] 114 0 0 114 / 256 6.8s Sem concurrent [ ] 116 0 0 116 / 256 7.1s Sem concurrent [ ] 119 0 0 119 / 256 7.3s Sem concurrent [ ] 121 0 0 121 / 256 7.4s Sem concurrent [ ] 124 0 0 124 / 256 7.6s Sem concurrent [ ] 127 0 0 127 / 256 7.8s Sem concurrent [ ] 130 0 0 130 / 256 7.9s Sem concurrent [ ] 132 0 0 132 / 256 8.0s Sem concurrent [ ] 134 0 0 134 / 256 8.1s Sem concurrent [ ] 137 0 0 137 / 256 8.3s Sem concurrent [ ] 139 0 0 139 / 256 8.4s Sem concurrent [ ] 141 0 0 141 / 256 8.5s Sem concurrent [ ] 144 0 0 144 / 256 8.7s Sem concurrent [ ] 147 0 0 147 / 256 8.8s Sem concurrent [ ] 149 0 0 149 / 256 9.0s Sem concurrent [ ] 152 0 0 152 / 256 9.1s Sem concurrent [ ] 153 0 0 153 / 256 9.3s Sem concurrent [ ] 155 0 0 155 / 256 9.7s Sem concurrent [ ] 158 0 0 158 / 256 9.8s Sem concurrent [ ] 160 0 0 160 / 256 10.2s Sem concurrent [ ] 162 0 0 162 / 256 10.3s Sem concurrent [ ] 165 0 0 165 / 256 10.4s Sem concurrent [ ] 167 0 0 167 / 256 10.5s Sem concurrent [ ] 169 0 0 169 / 256 10.9s Sem concurrent [ ] 171 0 0 171 / 256 11.0s Sem concurrent [ ] 174 0 0 174 / 256 11.2s Sem concurrent [ ] 176 0 0 176 / 256 11.3s Sem concurrent [ ] 179 0 0 179 / 256 11.4s Sem concurrent [ ] 182 0 0 182 / 256 11.5s Sem concurrent [ ] 185 0 0 185 / 256 11.7s Sem concurrent [ ] 187 0 0 187 / 256 11.8s Sem concurrent [ ] 190 0 0 190 / 256 12.0s Sem concurrent [ ] 193 0 0 193 / 256 12.3s Sem concurrent [ ] 195 0 0 195 / 256 12.5s Sem concurrent [ ] 199 0 0 199 / 256 12.6s Sem concurrent [ ] 202 0 0 202 / 256 12.7s Sem concurrent [ ] 203 0 0 203 / 256 12.9s Sem concurrent [ ] 205 0 0 205 / 256 13.1s Sem concurrent [ ] 209 0 0 209 / 256 13.3s Sem concurrent [ ] 212 0 0 212 / 256 13.5s Sem concurrent [ ] 214 0 0 214 / 256 13.6s Sem concurrent [ ] 216 0 0 216 / 256 13.8s Sem concurrent [ ] 218 0 0 218 / 256 13.9s Sem concurrent [ ] 221 0 0 221 / 256 14.0s Sem concurrent [ ] 222 0 0 222 / 256 14.1s Sem concurrent [ ] 224 0 0 224 / 256 14.2s Sem concurrent [ ] 227 0 0 227 / 256 14.4s Sem concurrent [ ] 231 0 0 231 / 256 14.5s Sem concurrent [ ] 235 0 0 235 / 256 14.8s Sem concurrent [ ] 238 0 0 238 / 256 15.0s Sem concurrent [ ] 240 0 0 240 / 256 15.1s Sem concurrent [ ] 242 0 0 242 / 256 15.2s Sem concurrent [ ] 244 0 0 244 / 256 15.3s Sem concurrent [ ] 246 0 0 246 / 256 15.4s Sem concurrent [ ] 248 0 0 248 / 256 15.6s Sem concurrent [ ] 250 0 0 250 / 256 15.9s Sem concurrent [ ] 253 0 0 253 / 256 16.2s Sem concurrent [ ] 255 0 0 255 / 256 16.3s Sem concurrent [✓] 256 0 0 256 / 256 16.4s Sem concurrent ================================================================================ success (ran 2 tests) random seed: 2969136895310860877 generated error fail pass / total time test name [ ] 0 0 0 0 / 475 0.0s Sem sequential [✓] 475 0 0 475 / 475 0.0s Sem sequential [ ] 0 0 0 0 / 475 0.0s Sem concurrent [ ] 1 0 0 1 / 475 0.1s Sem concurrent [ ] 2 0 0 2 / 475 0.2s Sem concurrent [ ] 4 0 0 4 / 475 0.3s Sem concurrent [ ] 7 0 0 7 / 475 0.4s Sem concurrent [ ] 10 0 0 10 / 475 0.6s Sem concurrent [ ] 14 0 0 14 / 475 0.8s Sem concurrent [ ] 15 0 0 15 / 475 0.9s Sem concurrent [ ] 18 0 0 18 / 475 1.0s Sem concurrent [ ] 21 0 0 21 / 475 1.2s Sem concurrent [ ] 24 0 0 24 / 475 1.3s Sem concurrent [ ] 28 0 0 28 / 475 1.4s Sem concurrent [ ] 31 0 0 31 / 475 1.6s Sem concurrent [ ] 34 0 0 34 / 475 1.7s Sem concurrent [ ] 37 0 0 37 / 475 1.8s Sem concurrent [ ] 40 0 0 40 / 475 1.9s Sem concurrent [ ] 43 0 0 43 / 475 2.1s Sem concurrent [ ] 45 0 0 45 / 475 2.2s Sem concurrent [ ] 48 0 0 48 / 475 2.3s Sem concurrent [ ] 50 0 0 50 / 475 2.4s Sem concurrent [ ] 52 0 0 52 / 475 2.6s Sem concurrent [ ] 55 0 0 55 / 475 2.7s Sem concurrent [ ] 56 0 0 56 / 475 3.0s Sem concurrent [ ] 58 0 0 58 / 475 3.1s Sem concurrent [ ] 59 0 0 59 / 475 3.2s Sem concurrent [ ] 61 0 0 61 / 475 3.4s Sem concurrent [ ] 65 0 0 65 / 475 3.6s Sem concurrent [ ] 68 0 0 68 / 475 3.7s Sem concurrent [ ] 70 0 0 70 / 475 3.8s Sem concurrent [ ] 73 0 0 73 / 475 4.1s Sem concurrent [ ] 75 0 0 75 / 475 4.2s Sem concurrent [ ] 78 0 0 78 / 475 4.3s Sem concurrent [ ] 80 0 0 80 / 475 4.5s Sem concurrent [ ] 83 0 0 83 / 475 4.6s Sem concurrent [ ] 86 0 0 86 / 475 4.7s Sem concurrent [ ] 89 0 0 89 / 475 4.9s Sem concurrent [ ] 91 0 0 91 / 475 5.0s Sem concurrent [ ] 94 0 0 94 / 475 5.1s Sem concurrent [ ] 96 0 0 96 / 475 5.2s Sem concurrent [ ] 99 0 0 99 / 475 5.4s Sem concurrent [ ] 103 0 0 103 / 475 5.5s Sem concurrent [ ] 105 0 0 105 / 475 5.9s Sem concurrent [ ] 108 0 0 108 / 475 6.0s Sem concurrent [ ] 111 0 0 111 / 475 6.1s Sem concurrent [ ] 112 0 0 112 / 475 6.2s Sem concurrent [ ] 115 0 0 115 / 475 6.3s Sem concurrent [ ] 118 0 0 118 / 475 6.4s Sem concurrent [ ] 119 0 0 119 / 475 6.6s Sem concurrent [ ] 122 0 0 122 / 475 6.7s Sem concurrent [ ] 125 0 0 125 / 475 6.8s Sem concurrent [ ] 127 0 0 127 / 475 7.2s Sem concurrent [ ] 130 0 0 130 / 475 7.3s Sem concurrent [ ] 131 0 0 131 / 475 7.4s Sem concurrent [ ] 134 0 0 134 / 475 7.7s Sem concurrent [ ] 137 0 0 137 / 475 8.0s Sem concurrent [ ] 139 0 0 139 / 475 8.1s Sem concurrent [ ] 141 0 0 141 / 475 8.2s Sem concurrent [ ] 142 0 0 142 / 475 8.5s Sem concurrent [ ] 144 0 0 144 / 475 8.8s Sem concurrent [ ] 146 0 0 146 / 475 8.9s Sem concurrent [ ] 150 0 0 150 / 475 9.1s Sem concurrent [ ] 151 0 0 151 / 475 9.3s Sem concurrent [ ] 153 0 0 153 / 475 9.4s Sem concurrent [ ] 155 0 0 155 / 475 9.7s Sem concurrent [ ] 156 0 0 156 / 475 10.0s Sem concurrent [ ] 158 0 0 158 / 475 10.2s Sem concurrent [ ] 161 0 0 161 / 475 10.4s Sem concurrent [ ] 164 0 0 164 / 475 10.5s Sem concurrent [ ] 167 0 0 167 / 475 10.6s Sem concurrent [ ] 169 0 0 169 / 475 10.8s Sem concurrent [ ] 172 0 0 172 / 475 10.9s Sem concurrent [ ] 174 0 0 174 / 475 11.1s Sem concurrent [ ] 177 0 0 177 / 475 11.2s Sem concurrent [ ] 181 0 0 181 / 475 11.3s Sem concurrent [ ] 183 0 0 183 / 475 11.4s Sem concurrent [ ] 186 0 0 186 / 475 11.5s Sem concurrent [ ] 188 0 0 188 / 475 11.7s Sem concurrent [ ] 190 0 0 190 / 475 11.9s Sem concurrent [ ] 191 0 0 191 / 475 12.1s Sem concurrent [ ] 194 0 0 194 / 475 12.3s Sem concurrent [ ] 195 0 0 195 / 475 12.5s Sem concurrent [ ] 197 0 0 197 / 475 12.7s Sem concurrent [ ] 199 0 0 199 / 475 13.0s Sem concurrent [ ] 202 0 0 202 / 475 13.2s Sem concurrent [ ] 206 0 0 206 / 475 13.3s Sem concurrent [ ] 208 0 0 208 / 475 13.4s Sem concurrent [ ] 211 0 0 211 / 475 13.5s Sem concurrent [ ] 213 0 0 213 / 475 13.9s Sem concurrent [ ] 215 0 0 215 / 475 14.0s Sem concurrent [ ] 217 0 0 217 / 475 14.1s Sem concurrent [ ] 220 0 0 220 / 475 14.2s Sem concurrent [ ] 222 0 0 222 / 475 14.3s Sem concurrent [ ] 226 0 0 226 / 475 14.5s Sem concurrent [ ] 227 0 0 227 / 475 14.6s Sem concurrent [ ] 230 0 0 230 / 475 14.7s Sem concurrent [ ] 232 0 0 232 / 475 14.8s Sem concurrent [ ] 233 0 0 233 / 475 15.0s Sem concurrent [ ] 234 0 0 234 / 475 15.1s Sem concurrent [ ] 237 0 0 237 / 475 15.2s Sem concurrent [ ] 240 0 0 240 / 475 15.5s Sem concurrent [ ] 243 0 0 243 / 475 15.6s Sem concurrent [ ] 247 0 0 247 / 475 15.7s Sem concurrent [ ] 249 0 0 249 / 475 15.8s Sem concurrent [ ] 251 0 0 251 / 475 16.0s Sem concurrent [ ] 254 0 0 254 / 475 16.2s Sem concurrent [ ] 255 0 0 255 / 475 16.3s Sem concurrent [ ] 257 0 0 257 / 475 16.5s Sem concurrent [ ] 261 0 0 261 / 475 16.6s Sem concurrent [ ] 263 0 0 263 / 475 16.7s Sem concurrent [ ] 266 0 0 266 / 475 17.0s Sem concurrent [ ] 269 0 0 269 / 475 17.1s Sem concurrent [ ] 272 0 0 272 / 475 17.4s Sem concurrent [ ] 275 0 0 275 / 475 17.5s Sem concurrent [ ] 278 0 0 278 / 475 17.7s Sem concurrent [ ] 280 0 0 280 / 475 17.8s Sem concurrent [ ] 283 0 0 283 / 475 17.9s Sem concurrent [ ] 284 0 0 284 / 475 18.1s Sem concurrent [ ] 286 0 0 286 / 475 18.3s Sem concurrent [ ] 289 0 0 289 / 475 18.4s Sem concurrent [ ] 290 0 0 290 / 475 18.5s Sem concurrent [ ] 292 0 0 292 / 475 18.6s Sem concurrent [ ] 294 0 0 294 / 475 18.7s Sem concurrent [ ] 297 0 0 297 / 475 18.9s Sem concurrent [ ] 300 0 0 300 / 475 19.0s Sem concurrent [ ] 303 0 0 303 / 475 19.2s Sem concurrent [ ] 306 0 0 306 / 475 19.3s Sem concurrent [ ] 308 0 0 308 / 475 19.4s Sem concurrent [ ] 311 0 0 311 / 475 19.5s Sem concurrent [ ] 314 0 0 314 / 475 19.6s Sem concurrent [ ] 315 0 0 315 / 475 19.8s Sem concurrent [ ] 316 0 0 316 / 475 19.9s Sem concurrent [ ] 318 0 0 318 / 475 20.1s Sem concurrent [ ] 322 0 0 322 / 475 20.2s Sem concurrent [ ] 324 0 0 324 / 475 20.3s Sem concurrent [ ] 326 0 0 326 / 475 20.4s Sem concurrent [ ] 329 0 0 329 / 475 20.6s Sem concurrent [ ] 333 0 0 333 / 475 20.7s Sem concurrent [ ] 336 0 0 336 / 475 20.8s Sem concurrent [ ] 338 0 0 338 / 475 21.1s Sem concurrent [ ] 340 0 0 340 / 475 21.2s Sem concurrent [ ] 342 0 0 342 / 475 21.3s Sem concurrent [ ] 343 0 0 343 / 475 21.4s Sem concurrent [ ] 345 0 0 345 / 475 21.6s Sem concurrent [ ] 348 0 0 348 / 475 21.7s Sem concurrent [ ] 350 0 0 350 / 475 22.0s Sem concurrent [ ] 352 0 0 352 / 475 22.3s Sem concurrent [ ] 356 0 0 356 / 475 22.4s Sem concurrent [ ] 360 0 0 360 / 475 22.6s Sem concurrent [ ] 363 0 0 363 / 475 22.7s Sem concurrent [ ] 366 0 0 366 / 475 22.8s Sem concurrent [ ] 369 0 0 369 / 475 22.9s Sem concurrent [ ] 370 0 0 370 / 475 23.1s Sem concurrent [ ] 372 0 0 372 / 475 23.3s Sem concurrent [ ] 375 0 0 375 / 475 23.4s Sem concurrent [ ] 378 0 0 378 / 475 23.6s Sem concurrent [ ] 380 0 0 380 / 475 23.7s Sem concurrent [ ] 383 0 0 383 / 475 23.9s Sem concurrent [ ] 386 0 0 386 / 475 24.0s Sem concurrent [ ] 388 0 0 388 / 475 24.1s Sem concurrent [ ] 389 0 0 389 / 475 24.2s Sem concurrent [ ] 392 0 0 392 / 475 24.3s Sem concurrent [ ] 396 0 0 396 / 475 24.5s Sem concurrent [ ] 399 0 0 399 / 475 24.6s Sem concurrent [ ] 402 0 0 402 / 475 24.8s Sem concurrent [ ] 406 0 0 406 / 475 24.9s Sem concurrent [ ] 408 0 0 408 / 475 25.1s Sem concurrent [ ] 410 0 0 410 / 475 25.3s Sem concurrent [ ] 411 0 0 411 / 475 25.5s Sem concurrent [ ] 413 0 0 413 / 475 25.8s Sem concurrent [ ] 417 0 0 417 / 475 25.9s Sem concurrent [ ] 420 0 0 420 / 475 26.0s Sem concurrent [ ] 422 0 0 422 / 475 26.1s Sem concurrent [ ] 424 0 0 424 / 475 26.3s Sem concurrent [ ] 427 0 0 427 / 475 26.4s Sem concurrent [ ] 429 0 0 429 / 475 26.5s Sem concurrent [ ] 433 0 0 433 / 475 26.6s Sem concurrent [ ] 436 0 0 436 / 475 26.7s Sem concurrent [ ] 439 0 0 439 / 475 26.9s Sem concurrent [ ] 440 0 0 440 / 475 27.1s Sem concurrent [ ] 444 0 0 444 / 475 27.2s Sem concurrent [ ] 445 0 0 445 / 475 27.5s Sem concurrent [ ] 448 0 0 448 / 475 27.6s Sem concurrent [ ] 449 0 0 449 / 475 27.7s Sem concurrent [ ] 452 0 0 452 / 475 27.8s Sem concurrent [ ] 455 0 0 455 / 475 28.0s Sem concurrent [ ] 458 0 0 458 / 475 28.1s Sem concurrent [ ] 461 0 0 461 / 475 28.2s Sem concurrent [ ] 464 0 0 464 / 475 28.3s Sem concurrent [ ] 467 0 0 467 / 475 28.4s Sem concurrent [ ] 469 0 0 469 / 475 28.5s Sem concurrent [ ] 472 0 0 472 / 475 28.7s Sem concurrent [ ] 473 0 0 473 / 475 28.9s Sem concurrent [✓] 475 0 0 475 / 475 29.0s Sem concurrent ================================================================================ success (ran 2 tests) random seed: 2479639733442495364 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Sem sequential [✓] 32 0 0 32 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem concurrent [ ] 2 0 0 2 / 32 0.1s Sem concurrent [ ] 5 0 0 5 / 32 0.2s Sem concurrent [ ] 8 0 0 8 / 32 0.3s Sem concurrent [ ] 12 0 0 12 / 32 0.4s Sem concurrent [ ] 16 0 0 16 / 32 0.5s Sem concurrent [ ] 19 0 0 19 / 32 0.7s Sem concurrent [ ] 21 0 0 21 / 32 0.8s Sem concurrent [ ] 24 0 0 24 / 32 0.9s Sem concurrent [ ] 27 0 0 27 / 32 1.0s Sem concurrent [ ] 30 0 0 30 / 32 1.2s Sem concurrent [✓] 32 0 0 32 / 32 1.3s Sem concurrent ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_mutex.exe) random seed: 343545705442504329 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex sequential (generating) [✓] 32 0 0 32 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex concurrent [ ] 3 0 0 3 / 32 0.1s Mutex concurrent [ ] 6 0 0 6 / 32 0.4s Mutex concurrent [ ] 7 0 0 7 / 32 0.8s Mutex concurrent [ ] 10 0 0 10 / 32 0.9s Mutex concurrent [ ] 12 0 0 12 / 32 1.0s Mutex concurrent [ ] 14 0 0 14 / 32 1.1s Mutex concurrent [ ] 17 0 0 17 / 32 1.3s Mutex concurrent [ ] 19 0 0 19 / 32 1.4s Mutex concurrent [ ] 21 0 0 21 / 32 1.7s Mutex concurrent [ ] 22 0 0 22 / 32 1.9s Mutex concurrent [ ] 25 0 0 25 / 32 2.0s Mutex concurrent [ ] 28 0 0 28 / 32 2.1s Mutex concurrent [ ] 31 0 0 31 / 32 2.2s Mutex concurrent [✓] 32 0 0 32 / 32 2.3s Mutex concurrent ================================================================================ success (ran 2 tests) random seed: 2600053882710825340 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Mutex sequential [✓] 64 0 0 64 / 64 0.0s Mutex sequential [ ] 0 0 0 0 / 64 0.0s Mutex concurrent [ ] 2 0 0 2 / 64 0.1s Mutex concurrent [ ] 5 0 0 5 / 64 0.2s Mutex concurrent [ ] 7 0 0 7 / 64 0.4s Mutex concurrent [ ] 11 0 0 11 / 64 0.5s Mutex concurrent [ ] 15 0 0 15 / 64 0.7s Mutex concurrent [ ] 18 0 0 18 / 64 0.8s Mutex concurrent [ ] 22 0 0 22 / 64 0.9s Mutex concurrent [ ] 24 0 0 24 / 64 1.0s Mutex concurrent [ ] 29 0 0 29 / 64 1.2s Mutex concurrent [ ] 32 0 0 32 / 64 1.3s Mutex concurrent [ ] 35 0 0 35 / 64 1.8s Mutex concurrent [ ] 39 0 0 39 / 64 1.9s Mutex concurrent [ ] 42 0 0 42 / 64 2.0s Mutex concurrent [ ] 45 0 0 45 / 64 2.2s Mutex concurrent [ ] 47 0 0 47 / 64 2.4s Mutex concurrent [ ] 49 0 0 49 / 64 2.5s Mutex concurrent [ ] 51 0 0 51 / 64 2.6s Mutex concurrent [ ] 53 0 0 53 / 64 2.8s Mutex concurrent [ ] 55 0 0 55 / 64 3.0s Mutex concurrent [ ] 58 0 0 58 / 64 3.6s Mutex concurrent [ ] 60 0 0 60 / 64 3.7s Mutex concurrent [ ] 62 0 0 62 / 64 3.9s Mutex concurrent [✓] 64 0 0 64 / 64 4.0s Mutex concurrent ================================================================================ success (ran 2 tests) random seed: 893201598027430982 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Mutex sequential [✓] 128 0 0 128 / 128 0.0s Mutex sequential [ ] 0 0 0 0 / 128 0.0s Mutex concurrent [ ] 1 0 0 1 / 128 0.0s Mutex concurrent [ ] 3 0 0 3 / 128 0.1s Mutex concurrent [ ] 5 0 0 5 / 128 0.3s Mutex concurrent [ ] 7 0 0 7 / 128 0.4s Mutex concurrent [ ] 9 0 0 9 / 128 0.5s Mutex concurrent [ ] 13 0 0 13 / 128 0.7s Mutex concurrent [ ] 16 0 0 16 / 128 0.9s Mutex concurrent [ ] 19 0 0 19 / 128 1.0s Mutex concurrent [ ] 22 0 0 22 / 128 1.1s Mutex concurrent [ ] 25 0 0 25 / 128 1.2s Mutex concurrent [ ] 27 0 0 27 / 128 1.6s Mutex concurrent [ ] 30 0 0 30 / 128 1.8s Mutex concurrent [ ] 33 0 0 33 / 128 1.9s Mutex concurrent [ ] 36 0 0 36 / 128 2.0s Mutex concurrent [ ] 38 0 0 38 / 128 2.2s Mutex concurrent [ ] 40 0 0 40 / 128 2.3s Mutex concurrent [ ] 42 0 0 42 / 128 2.4s Mutex concurrent [ ] 45 0 0 45 / 128 2.6s Mutex concurrent [ ] 48 0 0 48 / 128 2.8s Mutex concurrent [ ] 50 0 0 50 / 128 3.0s Mutex concurrent [ ] 53 0 0 53 / 128 3.1s Mutex concurrent [ ] 56 0 0 56 / 128 3.2s Mutex concurrent [ ] 57 0 0 57 / 128 3.3s Mutex concurrent [ ] 59 0 0 59 / 128 3.5s Mutex concurrent [ ] 62 0 0 62 / 128 3.6s Mutex concurrent [ ] 64 0 0 64 / 128 3.7s Mutex concurrent [ ] 66 0 0 66 / 128 4.0s Mutex concurrent [ ] 69 0 0 69 / 128 4.3s Mutex concurrent [ ] 71 0 0 71 / 128 4.5s Mutex concurrent [ ] 72 0 0 72 / 128 4.7s Mutex concurrent [ ] 75 0 0 75 / 128 4.8s Mutex concurrent [ ] 78 0 0 78 / 128 4.9s Mutex concurrent [ ] 81 0 0 81 / 128 5.1s Mutex concurrent [ ] 83 0 0 83 / 128 5.4s Mutex concurrent [ ] 84 0 0 84 / 128 5.6s Mutex concurrent [ ] 87 0 0 87 / 128 5.7s Mutex concurrent [ ] 89 0 0 89 / 128 5.8s Mutex concurrent [ ] 92 0 0 92 / 128 5.9s Mutex concurrent [ ] 95 0 0 95 / 128 6.0s Mutex concurrent [ ] 98 0 0 98 / 128 6.3s Mutex concurrent [ ] 99 0 0 99 / 128 6.6s Mutex concurrent [ ] 102 0 0 102 / 128 6.7s Mutex concurrent [ ] 104 0 0 104 / 128 6.8s Mutex concurrent [ ] 105 0 0 105 / 128 7.0s Mutex concurrent [ ] 109 0 0 109 / 128 7.4s Mutex concurrent [ ] 112 0 0 112 / 128 7.6s Mutex concurrent [ ] 115 0 0 115 / 128 7.9s Mutex concurrent [ ] 117 0 0 117 / 128 8.3s Mutex concurrent [ ] 120 0 0 120 / 128 8.7s Mutex concurrent [ ] 122 0 0 122 / 128 9.0s Mutex concurrent [ ] 125 0 0 125 / 128 9.1s Mutex concurrent [ ] 127 0 0 127 / 128 9.2s Mutex concurrent [✓] 128 0 0 128 / 128 9.2s Mutex concurrent ================================================================================ success (ran 2 tests) random seed: 3383011953295544556 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Mutex sequential [✓] 256 0 0 256 / 256 0.0s Mutex sequential [ ] 0 0 0 0 / 256 0.0s Mutex concurrent [ ] 1 0 0 1 / 256 0.4s Mutex concurrent [ ] 4 0 0 4 / 256 0.8s Mutex concurrent [ ] 7 0 0 7 / 256 0.9s Mutex concurrent [ ] 9 0 0 9 / 256 1.3s Mutex concurrent [ ] 11 0 0 11 / 256 1.6s Mutex concurrent [ ] 14 0 0 14 / 256 1.7s Mutex concurrent [ ] 17 0 0 17 / 256 1.8s Mutex concurrent [ ] 20 0 0 20 / 256 2.0s Mutex concurrent [ ] 22 0 0 22 / 256 2.1s Mutex concurrent [ ] 25 0 0 25 / 256 2.5s Mutex concurrent [ ] 27 0 0 27 / 256 2.8s Mutex concurrent [ ] 29 0 0 29 / 256 3.0s Mutex concurrent [ ] 32 0 0 32 / 256 3.4s Mutex concurrent [ ] 35 0 0 35 / 256 3.5s Mutex concurrent [ ] 36 0 0 36 / 256 3.6s Mutex concurrent [ ] 39 0 0 39 / 256 3.8s Mutex concurrent [ ] 43 0 0 43 / 256 3.9s Mutex concurrent [ ] 46 0 0 46 / 256 4.1s Mutex concurrent [ ] 49 0 0 49 / 256 4.2s Mutex concurrent [ ] 50 0 0 50 / 256 4.3s Mutex concurrent [ ] 53 0 0 53 / 256 4.4s Mutex concurrent [ ] 57 0 0 57 / 256 4.5s Mutex concurrent [ ] 58 0 0 58 / 256 4.7s Mutex concurrent [ ] 60 0 0 60 / 256 4.8s Mutex concurrent [ ] 63 0 0 63 / 256 5.0s Mutex concurrent [ ] 67 0 0 67 / 256 5.1s Mutex concurrent [ ] 68 0 0 68 / 256 5.2s Mutex concurrent [ ] 70 0 0 70 / 256 5.3s Mutex concurrent [ ] 73 0 0 73 / 256 5.4s Mutex concurrent [ ] 74 0 0 74 / 256 5.5s Mutex concurrent [ ] 76 0 0 76 / 256 5.7s Mutex concurrent [ ] 77 0 0 77 / 256 5.8s Mutex concurrent [ ] 79 0 0 79 / 256 5.9s Mutex concurrent [ ] 80 0 0 80 / 256 6.0s Mutex concurrent [ ] 82 0 0 82 / 256 6.4s Mutex concurrent [ ] 83 0 0 83 / 256 6.5s Mutex concurrent [ ] 85 0 0 85 / 256 6.6s Mutex concurrent [ ] 87 0 0 87 / 256 6.7s Mutex concurrent [ ] 89 0 0 89 / 256 6.9s Mutex concurrent [ ] 91 0 0 91 / 256 7.0s Mutex concurrent [ ] 93 0 0 93 / 256 7.1s Mutex concurrent [ ] 96 0 0 96 / 256 7.5s Mutex concurrent [ ] 98 0 0 98 / 256 7.6s Mutex concurrent [ ] 100 0 0 100 / 256 7.8s Mutex concurrent [ ] 103 0 0 103 / 256 7.9s Mutex concurrent [ ] 105 0 0 105 / 256 8.0s Mutex concurrent [ ] 108 0 0 108 / 256 8.2s Mutex concurrent [ ] 110 0 0 110 / 256 8.3s Mutex concurrent [ ] 114 0 0 114 / 256 8.5s Mutex concurrent [ ] 116 0 0 116 / 256 8.6s Mutex concurrent [ ] 119 0 0 119 / 256 8.7s Mutex concurrent [ ] 122 0 0 122 / 256 8.9s Mutex concurrent [ ] 124 0 0 124 / 256 9.0s Mutex concurrent [ ] 126 0 0 126 / 256 9.1s Mutex concurrent [ ] 128 0 0 128 / 256 9.2s Mutex concurrent [ ] 129 0 0 129 / 256 9.5s Mutex concurrent [ ] 131 0 0 131 / 256 9.6s Mutex concurrent [ ] 134 0 0 134 / 256 9.8s Mutex concurrent [ ] 136 0 0 136 / 256 9.9s Mutex concurrent [ ] 137 0 0 137 / 256 10.1s Mutex concurrent [ ] 139 0 0 139 / 256 10.3s Mutex concurrent [ ] 141 0 0 141 / 256 10.7s Mutex concurrent [ ] 144 0 0 144 / 256 10.8s Mutex concurrent [ ] 145 0 0 145 / 256 11.0s Mutex concurrent [ ] 146 0 0 146 / 256 11.1s Mutex concurrent [ ] 149 0 0 149 / 256 11.3s Mutex concurrent [ ] 152 0 0 152 / 256 11.4s Mutex concurrent [ ] 154 0 0 154 / 256 11.6s Mutex concurrent [ ] 156 0 0 156 / 256 11.8s Mutex concurrent [ ] 157 0 0 157 / 256 11.9s Mutex concurrent [ ] 160 0 0 160 / 256 12.0s Mutex concurrent [ ] 162 0 0 162 / 256 12.1s Mutex concurrent [ ] 165 0 0 165 / 256 12.3s Mutex concurrent [ ] 168 0 0 168 / 256 12.4s Mutex concurrent [ ] 171 0 0 171 / 256 12.7s Mutex concurrent [ ] 175 0 0 175 / 256 13.2s Mutex concurrent [ ] 178 0 0 178 / 256 13.3s Mutex concurrent [ ] 181 0 0 181 / 256 13.4s Mutex concurrent [ ] 183 0 0 183 / 256 13.5s Mutex concurrent [ ] 184 0 0 184 / 256 13.6s Mutex concurrent [ ] 186 0 0 186 / 256 13.8s Mutex concurrent [ ] 189 0 0 189 / 256 13.9s Mutex concurrent [ ] 191 0 0 191 / 256 14.0s Mutex concurrent [ ] 193 0 0 193 / 256 14.1s Mutex concurrent [ ] 196 0 0 196 / 256 14.3s Mutex concurrent [ ] 197 0 0 197 / 256 14.4s Mutex concurrent [ ] 199 0 0 199 / 256 14.7s Mutex concurrent [ ] 201 0 0 201 / 256 14.9s Mutex concurrent [ ] 204 0 0 204 / 256 15.0s Mutex concurrent [ ] 206 0 0 206 / 256 15.1s Mutex concurrent [ ] 209 0 0 209 / 256 15.4s Mutex concurrent [ ] 211 0 0 211 / 256 15.6s Mutex concurrent [ ] 214 0 0 214 / 256 15.7s Mutex concurrent [ ] 216 0 0 216 / 256 16.1s Mutex concurrent [ ] 219 0 0 219 / 256 16.2s Mutex concurrent [ ] 221 0 0 221 / 256 16.4s Mutex concurrent [ ] 224 0 0 224 / 256 16.5s Mutex concurrent [ ] 227 0 0 227 / 256 16.6s Mutex concurrent [ ] 230 0 0 230 / 256 16.8s Mutex concurrent [ ] 232 0 0 232 / 256 17.0s Mutex concurrent [ ] 233 0 0 233 / 256 17.2s Mutex concurrent [ ] 234 0 0 234 / 256 17.3s Mutex concurrent [ ] 236 0 0 236 / 256 17.4s Mutex concurrent [ ] 238 0 0 238 / 256 17.5s Mutex concurrent [ ] 241 0 0 241 / 256 17.7s Mutex concurrent [ ] 244 0 0 244 / 256 17.9s Mutex concurrent [ ] 246 0 0 246 / 256 18.3s Mutex concurrent [ ] 249 0 0 249 / 256 18.5s Mutex concurrent [ ] 252 0 0 252 / 256 18.6s Mutex concurrent [ ] 255 0 0 255 / 256 18.7s Mutex concurrent [ ] 256 0 0 256 / 256 18.8s Mutex concurrent [✓] 256 0 0 256 / 256 18.8s Mutex concurrent ================================================================================ success (ran 2 tests) random seed: 4206003421579791215 generated error fail pass / total time test name [ ] 0 0 0 0 / 359 0.0s Mutex sequential [✓] 359 0 0 359 / 359 0.0s Mutex sequential [ ] 0 0 0 0 / 359 0.0s Mutex concurrent [ ] 2 0 0 2 / 359 0.1s Mutex concurrent [ ] 5 0 0 5 / 359 0.2s Mutex concurrent [ ] 9 0 0 9 / 359 0.4s Mutex concurrent [ ] 12 0 0 12 / 359 0.5s Mutex concurrent [ ] 14 0 0 14 / 359 0.8s Mutex concurrent [ ] 15 0 0 15 / 359 0.9s Mutex concurrent [ ] 17 0 0 17 / 359 1.1s Mutex concurrent [ ] 20 0 0 20 / 359 1.2s Mutex concurrent [ ] 24 0 0 24 / 359 1.3s Mutex concurrent [ ] 26 0 0 26 / 359 1.5s Mutex concurrent [ ] 28 0 0 28 / 359 1.6s Mutex concurrent [ ] 30 0 0 30 / 359 1.7s Mutex concurrent [ ] 33 0 0 33 / 359 1.9s Mutex concurrent [ ] 36 0 0 36 / 359 2.1s Mutex concurrent [ ] 38 0 0 38 / 359 2.4s Mutex concurrent [ ] 40 0 0 40 / 359 2.7s Mutex concurrent [ ] 42 0 0 42 / 359 2.8s Mutex concurrent [ ] 44 0 0 44 / 359 2.9s Mutex concurrent [ ] 47 0 0 47 / 359 3.1s Mutex concurrent [ ] 49 0 0 49 / 359 3.2s Mutex concurrent [ ] 52 0 0 52 / 359 3.3s Mutex concurrent [ ] 54 0 0 54 / 359 3.5s Mutex concurrent [ ] 56 0 0 56 / 359 3.6s Mutex concurrent [ ] 59 0 0 59 / 359 3.7s Mutex concurrent [ ] 62 0 0 62 / 359 4.1s Mutex concurrent [ ] 65 0 0 65 / 359 4.2s Mutex concurrent [ ] 68 0 0 68 / 359 4.3s Mutex concurrent [ ] 71 0 0 71 / 359 4.4s Mutex concurrent [ ] 75 0 0 75 / 359 4.5s Mutex concurrent [ ] 77 0 0 77 / 359 4.7s Mutex concurrent [ ] 79 0 0 79 / 359 4.8s Mutex concurrent [ ] 81 0 0 81 / 359 4.9s Mutex concurrent [ ] 83 0 0 83 / 359 5.1s Mutex concurrent [ ] 84 0 0 84 / 359 5.2s Mutex concurrent [ ] 86 0 0 86 / 359 5.3s Mutex concurrent [ ] 89 0 0 89 / 359 5.5s Mutex concurrent [ ] 92 0 0 92 / 359 5.6s Mutex concurrent [ ] 95 0 0 95 / 359 5.8s Mutex concurrent [ ] 98 0 0 98 / 359 5.9s Mutex concurrent [ ] 99 0 0 99 / 359 6.1s Mutex concurrent [ ] 103 0 0 103 / 359 6.2s Mutex concurrent [ ] 106 0 0 106 / 359 6.3s Mutex concurrent [ ] 109 0 0 109 / 359 6.6s Mutex concurrent [ ] 110 0 0 110 / 359 6.7s Mutex concurrent [ ] 113 0 0 113 / 359 6.8s Mutex concurrent [ ] 115 0 0 115 / 359 6.9s Mutex concurrent [ ] 118 0 0 118 / 359 7.1s Mutex concurrent [ ] 120 0 0 120 / 359 7.2s Mutex concurrent [ ] 121 0 0 121 / 359 7.3s Mutex concurrent [ ] 123 0 0 123 / 359 7.5s Mutex concurrent [ ] 124 0 0 124 / 359 7.7s Mutex concurrent [ ] 128 0 0 128 / 359 7.9s Mutex concurrent [ ] 131 0 0 131 / 359 8.1s Mutex concurrent [ ] 133 0 0 133 / 359 8.2s Mutex concurrent [ ] 135 0 0 135 / 359 8.3s Mutex concurrent [ ] 139 0 0 139 / 359 8.6s Mutex concurrent [ ] 142 0 0 142 / 359 8.8s Mutex concurrent [ ] 145 0 0 145 / 359 8.9s Mutex concurrent [ ] 147 0 0 147 / 359 9.0s Mutex concurrent [ ] 149 0 0 149 / 359 9.4s Mutex concurrent [ ] 151 0 0 151 / 359 9.5s Mutex concurrent [ ] 154 0 0 154 / 359 9.6s Mutex concurrent [ ] 157 0 0 157 / 359 9.7s Mutex concurrent [ ] 160 0 0 160 / 359 9.8s Mutex concurrent [ ] 163 0 0 163 / 359 10.0s Mutex concurrent [ ] 165 0 0 165 / 359 10.1s Mutex concurrent [ ] 168 0 0 168 / 359 10.2s Mutex concurrent [ ] 170 0 0 170 / 359 10.5s Mutex concurrent [ ] 171 0 0 171 / 359 10.7s Mutex concurrent [ ] 172 0 0 172 / 359 11.0s Mutex concurrent [ ] 175 0 0 175 / 359 11.1s Mutex concurrent [ ] 179 0 0 179 / 359 11.2s Mutex concurrent [ ] 182 0 0 182 / 359 11.4s Mutex concurrent [ ] 185 0 0 185 / 359 11.7s Mutex concurrent [ ] 188 0 0 188 / 359 11.8s Mutex concurrent [ ] 191 0 0 191 / 359 12.0s Mutex concurrent [ ] 193 0 0 193 / 359 12.1s Mutex concurrent [ ] 196 0 0 196 / 359 12.3s Mutex concurrent [ ] 199 0 0 199 / 359 12.4s Mutex concurrent [ ] 200 0 0 200 / 359 12.6s Mutex concurrent [ ] 202 0 0 202 / 359 12.7s Mutex concurrent [ ] 205 0 0 205 / 359 12.8s Mutex concurrent [ ] 207 0 0 207 / 359 12.9s Mutex concurrent [ ] 208 0 0 208 / 359 13.1s Mutex concurrent [ ] 209 0 0 209 / 359 13.2s Mutex concurrent [ ] 212 0 0 212 / 359 13.3s Mutex concurrent [ ] 216 0 0 216 / 359 13.5s Mutex concurrent [ ] 217 0 0 217 / 359 13.6s Mutex concurrent [ ] 220 0 0 220 / 359 13.8s Mutex concurrent [ ] 223 0 0 223 / 359 13.9s Mutex concurrent [ ] 226 0 0 226 / 359 14.0s Mutex concurrent [ ] 229 0 0 229 / 359 14.1s Mutex concurrent [ ] 232 0 0 232 / 359 14.3s Mutex concurrent [ ] 235 0 0 235 / 359 14.6s Mutex concurrent [ ] 237 0 0 237 / 359 14.7s Mutex concurrent [ ] 240 0 0 240 / 359 14.9s Mutex concurrent [ ] 243 0 0 243 / 359 15.0s Mutex concurrent [ ] 245 0 0 245 / 359 15.1s Mutex concurrent [ ] 248 0 0 248 / 359 15.2s Mutex concurrent [ ] 251 0 0 251 / 359 15.3s Mutex concurrent [ ] 253 0 0 253 / 359 15.4s Mutex concurrent [ ] 256 0 0 256 / 359 15.6s Mutex concurrent [ ] 259 0 0 259 / 359 15.7s Mutex concurrent [ ] 262 0 0 262 / 359 15.8s Mutex concurrent [ ] 265 0 0 265 / 359 15.9s Mutex concurrent [ ] 266 0 0 266 / 359 16.2s Mutex concurrent [ ] 268 0 0 268 / 359 16.3s Mutex concurrent [ ] 271 0 0 271 / 359 16.4s Mutex concurrent [ ] 274 0 0 274 / 359 16.6s Mutex concurrent [ ] 275 0 0 275 / 359 16.7s Mutex concurrent [ ] 278 0 0 278 / 359 16.8s Mutex concurrent [ ] 281 0 0 281 / 359 17.0s Mutex concurrent [ ] 284 0 0 284 / 359 17.1s Mutex concurrent [ ] 287 0 0 287 / 359 17.2s Mutex concurrent [ ] 288 0 0 288 / 359 17.4s Mutex concurrent [ ] 291 0 0 291 / 359 17.7s Mutex concurrent [ ] 294 0 0 294 / 359 17.8s Mutex concurrent [ ] 297 0 0 297 / 359 17.9s Mutex concurrent [ ] 300 0 0 300 / 359 18.0s Mutex concurrent [ ] 303 0 0 303 / 359 18.1s Mutex concurrent [ ] 307 0 0 307 / 359 18.3s Mutex concurrent [ ] 308 0 0 308 / 359 18.5s Mutex concurrent [ ] 311 0 0 311 / 359 18.6s Mutex concurrent [ ] 313 0 0 313 / 359 18.8s Mutex concurrent [ ] 314 0 0 314 / 359 19.0s Mutex concurrent [ ] 316 0 0 316 / 359 19.1s Mutex concurrent [ ] 319 0 0 319 / 359 19.2s Mutex concurrent [ ] 321 0 0 321 / 359 19.3s Mutex concurrent [ ] 324 0 0 324 / 359 19.4s Mutex concurrent [ ] 329 0 0 329 / 359 19.7s Mutex concurrent [ ] 332 0 0 332 / 359 19.9s Mutex concurrent [ ] 333 0 0 333 / 359 20.0s Mutex concurrent [ ] 335 0 0 335 / 359 20.1s Mutex concurrent [ ] 337 0 0 337 / 359 20.2s Mutex concurrent [ ] 340 0 0 340 / 359 20.4s Mutex concurrent [ ] 341 0 0 341 / 359 20.6s Mutex concurrent [ ] 342 0 0 342 / 359 20.7s Mutex concurrent [ ] 344 0 0 344 / 359 20.9s Mutex concurrent [ ] 347 0 0 347 / 359 21.0s Mutex concurrent [ ] 348 0 0 348 / 359 21.1s Mutex concurrent [ ] 349 0 0 349 / 359 21.4s Mutex concurrent [ ] 352 0 0 352 / 359 21.5s Mutex concurrent [ ] 355 0 0 355 / 359 21.7s Mutex concurrent [ ] 358 0 0 358 / 359 21.9s Mutex concurrent [ ] 359 0 0 359 / 359 22.0s Mutex concurrent [✓] 359 0 0 359 / 359 22.0s Mutex concurrent ================================================================================ success (ran 2 tests) random seed: 1863473372072921554 generated error fail pass / total time test name [ ] 0 0 0 0 / 54 0.0s Mutex sequential [✓] 54 0 0 54 / 54 0.0s Mutex sequential [ ] 0 0 0 0 / 54 0.0s Mutex concurrent [ ] 3 0 0 3 / 54 0.1s Mutex concurrent [ ] 6 0 0 6 / 54 0.3s Mutex concurrent [ ] 9 0 0 9 / 54 0.4s Mutex concurrent [ ] 10 0 0 10 / 54 0.5s Mutex concurrent [ ] 13 0 0 13 / 54 0.7s Mutex concurrent [ ] 16 0 0 16 / 54 0.8s Mutex concurrent [ ] 19 0 0 19 / 54 0.9s Mutex concurrent [ ] 23 0 0 23 / 54 1.0s Mutex concurrent [ ] 26 0 0 26 / 54 1.2s Mutex concurrent [ ] 28 0 0 28 / 54 1.3s Mutex concurrent [ ] 32 0 0 32 / 54 1.4s Mutex concurrent [ ] 34 0 0 34 / 54 1.6s Mutex concurrent [ ] 35 0 0 35 / 54 1.7s Mutex concurrent [ ] 38 0 0 38 / 54 1.8s Mutex concurrent [ ] 40 0 0 40 / 54 2.0s Mutex concurrent [ ] 43 0 0 43 / 54 2.1s Mutex concurrent [ ] 45 0 0 45 / 54 2.2s Mutex concurrent [ ] 47 0 0 47 / 54 2.3s Mutex concurrent [ ] 49 0 0 49 / 54 2.4s Mutex concurrent [ ] 52 0 0 52 / 54 2.5s Mutex concurrent [✓] 54 0 0 54 / 54 2.6s Mutex concurrent ================================================================================ success (ran 2 tests) random seed: 1066495780708536602 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mutex sequential [✓] 32 0 0 32 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex concurrent [ ] 1 0 0 1 / 32 0.0s Mutex concurrent [ ] 4 0 0 4 / 32 0.2s Mutex concurrent [ ] 7 0 0 7 / 32 0.3s Mutex concurrent [ ] 9 0 0 9 / 32 0.5s Mutex concurrent [ ] 12 0 0 12 / 32 0.7s Mutex concurrent [ ] 15 0 0 15 / 32 0.8s Mutex concurrent [ ] 18 0 0 18 / 32 1.1s Mutex concurrent [ ] 21 0 0 21 / 32 1.2s Mutex concurrent [ ] 23 0 0 23 / 32 1.4s Mutex concurrent [ ] 27 0 0 27 / 32 1.5s Mutex concurrent [ ] 30 0 0 30 / 32 1.6s Mutex concurrent [✓] 32 0 0 32 / 32 1.7s Mutex concurrent ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_rwlock.exe) random seed: 1336272989973106373 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Rwlock sequential [ ] 0 0 0 0 / 32 0.0s Rwlock sequential (generating) [✓] 32 0 0 32 / 32 0.0s Rwlock sequential [ ] 0 0 0 0 / 32 0.0s Rwlock concurrent [ ] 2 0 0 2 / 32 0.1s Rwlock concurrent [ ] 5 0 0 5 / 32 0.2s Rwlock concurrent [ ] 8 0 0 8 / 32 0.3s Rwlock concurrent [ ] 11 0 0 11 / 32 0.5s Rwlock concurrent [ ] 14 0 0 14 / 32 0.7s Rwlock concurrent [ ] 16 0 0 16 / 32 0.8s Rwlock concurrent [ ] 18 0 0 18 / 32 0.9s Rwlock concurrent [ ] 19 0 0 19 / 32 1.0s Rwlock concurrent [ ] 22 0 0 22 / 32 1.1s Rwlock concurrent [ ] 24 0 0 24 / 32 1.3s Rwlock concurrent [ ] 26 0 0 26 / 32 1.7s Rwlock concurrent [ ] 29 0 0 29 / 32 1.8s Rwlock concurrent [ ] 32 0 0 32 / 32 1.9s Rwlock concurrent [✓] 32 0 0 32 / 32 1.9s Rwlock concurrent ================================================================================ success (ran 2 tests) random seed: 2756601062781114492 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Rwlock sequential [✓] 64 0 0 64 / 64 0.0s Rwlock sequential [ ] 0 0 0 0 / 64 0.0s Rwlock concurrent [ ] 3 0 0 3 / 64 0.1s Rwlock concurrent [ ] 5 0 0 5 / 64 0.2s Rwlock concurrent [ ] 9 0 0 9 / 64 0.4s Rwlock concurrent [ ] 11 0 0 11 / 64 0.5s Rwlock concurrent [ ] 14 0 0 14 / 64 0.6s Rwlock concurrent [ ] 16 0 0 16 / 64 0.8s Rwlock concurrent [ ] 19 0 0 19 / 64 1.0s Rwlock concurrent [ ] 22 0 0 22 / 64 1.3s Rwlock concurrent [ ] 25 0 0 25 / 64 1.4s Rwlock concurrent [ ] 27 0 0 27 / 64 1.5s Rwlock concurrent [ ] 30 0 0 30 / 64 2.0s Rwlock concurrent [ ] 33 0 0 33 / 64 2.1s Rwlock concurrent [ ] 35 0 0 35 / 64 2.3s Rwlock concurrent [ ] 36 0 0 36 / 64 2.5s Rwlock concurrent [ ] 39 0 0 39 / 64 2.6s Rwlock concurrent [ ] 41 0 0 41 / 64 2.8s Rwlock concurrent [ ] 44 0 0 44 / 64 2.9s Rwlock concurrent [ ] 48 0 0 48 / 64 3.0s Rwlock concurrent [ ] 50 0 0 50 / 64 3.2s Rwlock concurrent [ ] 54 0 0 54 / 64 3.3s Rwlock concurrent [ ] 57 0 0 57 / 64 3.4s Rwlock concurrent [ ] 59 0 0 59 / 64 3.6s Rwlock concurrent [ ] 62 0 0 62 / 64 3.8s Rwlock concurrent [✓] 64 0 0 64 / 64 3.9s Rwlock concurrent ================================================================================ success (ran 2 tests) random seed: 485550287957107360 generated error fail pass / total time test name [ ] 0 0 0 0 / 128 0.0s Rwlock sequential [✓] 128 0 0 128 / 128 0.0s Rwlock sequential [ ] 0 0 0 0 / 128 0.0s Rwlock concurrent [ ] 1 0 0 1 / 128 0.0s Rwlock concurrent [ ] 3 0 0 3 / 128 0.2s Rwlock concurrent [ ] 4 0 0 4 / 128 0.5s Rwlock concurrent [ ] 7 0 0 7 / 128 0.7s Rwlock concurrent [ ] 8 0 0 8 / 128 0.9s Rwlock concurrent [ ] 11 0 0 11 / 128 1.0s Rwlock concurrent [ ] 15 0 0 15 / 128 1.2s Rwlock concurrent [ ] 18 0 0 18 / 128 1.5s Rwlock concurrent [ ] 19 0 0 19 / 128 1.8s Rwlock concurrent [ ] 22 0 0 22 / 128 2.0s Rwlock concurrent [ ] 24 0 0 24 / 128 2.3s Rwlock concurrent [ ] 25 0 0 25 / 128 2.6s Rwlock concurrent [ ] 27 0 0 27 / 128 2.7s Rwlock concurrent [ ] 29 0 0 29 / 128 3.1s Rwlock concurrent [ ] 30 0 0 30 / 128 3.3s Rwlock concurrent [ ] 32 0 0 32 / 128 3.5s Rwlock concurrent [ ] 34 0 0 34 / 128 3.6s Rwlock concurrent [ ] 36 0 0 36 / 128 3.8s Rwlock concurrent [ ] 38 0 0 38 / 128 3.9s Rwlock concurrent [ ] 40 0 0 40 / 128 4.0s Rwlock concurrent [ ] 43 0 0 43 / 128 4.1s Rwlock concurrent [ ] 45 0 0 45 / 128 4.2s Rwlock concurrent [ ] 48 0 0 48 / 128 4.3s Rwlock concurrent [ ] 50 0 0 50 / 128 4.6s Rwlock concurrent [ ] 51 0 0 51 / 128 4.7s Rwlock concurrent [ ] 53 0 0 53 / 128 4.8s Rwlock concurrent [ ] 55 0 0 55 / 128 5.0s Rwlock concurrent [ ] 58 0 0 58 / 128 5.1s Rwlock concurrent [ ] 61 0 0 61 / 128 5.2s Rwlock concurrent [ ] 62 0 0 62 / 128 5.4s Rwlock concurrent [ ] 65 0 0 65 / 128 5.6s Rwlock concurrent [ ] 69 0 0 69 / 128 5.7s Rwlock concurrent [ ] 72 0 0 72 / 128 5.8s Rwlock concurrent [ ] 75 0 0 75 / 128 6.2s Rwlock concurrent [ ] 76 0 0 76 / 128 6.3s Rwlock concurrent [ ] 79 0 0 79 / 128 6.4s Rwlock concurrent [ ] 83 0 0 83 / 128 6.5s Rwlock concurrent [ ] 84 0 0 84 / 128 6.7s Rwlock concurrent [ ] 88 0 0 88 / 128 6.9s Rwlock concurrent [ ] 90 0 0 90 / 128 7.0s Rwlock concurrent [ ] 95 0 0 95 / 128 7.1s Rwlock concurrent [ ] 96 0 0 96 / 128 7.2s Rwlock concurrent [ ] 98 0 0 98 / 128 7.4s Rwlock concurrent [ ] 100 0 0 100 / 128 7.6s Rwlock concurrent [ ] 102 0 0 102 / 128 7.7s Rwlock concurrent [ ] 103 0 0 103 / 128 7.8s Rwlock concurrent [ ] 106 0 0 106 / 128 8.0s Rwlock concurrent [ ] 107 0 0 107 / 128 8.1s Rwlock concurrent [ ] 109 0 0 109 / 128 8.3s Rwlock concurrent [ ] 112 0 0 112 / 128 8.7s Rwlock concurrent [ ] 114 0 0 114 / 128 8.8s Rwlock concurrent [ ] 116 0 0 116 / 128 9.2s Rwlock concurrent [ ] 118 0 0 118 / 128 9.4s Rwlock concurrent [ ] 120 0 0 120 / 128 9.6s Rwlock concurrent [ ] 123 0 0 123 / 128 9.7s Rwlock concurrent [ ] 124 0 0 124 / 128 9.9s Rwlock concurrent [ ] 125 0 0 125 / 128 10.0s Rwlock concurrent [ ] 127 0 0 127 / 128 10.1s Rwlock concurrent [✓] 128 0 0 128 / 128 10.2s Rwlock concurrent ================================================================================ success (ran 2 tests) random seed: 470487650358436172 generated error fail pass / total time test name [ ] 0 0 0 0 / 256 0.0s Rwlock sequential [✓] 256 0 0 256 / 256 0.0s Rwlock sequential [ ] 0 0 0 0 / 256 0.0s Rwlock concurrent [ ] 2 0 0 2 / 256 0.1s Rwlock concurrent [ ] 5 0 0 5 / 256 0.2s Rwlock concurrent [ ] 6 0 0 6 / 256 0.3s Rwlock concurrent [ ] 8 0 0 8 / 256 0.5s Rwlock concurrent [ ] 11 0 0 11 / 256 0.6s Rwlock concurrent [ ] 13 0 0 13 / 256 0.7s Rwlock concurrent [ ] 15 0 0 15 / 256 0.8s Rwlock concurrent [ ] 19 0 0 19 / 256 1.0s Rwlock concurrent [ ] 22 0 0 22 / 256 1.3s Rwlock concurrent [ ] 24 0 0 24 / 256 1.6s Rwlock concurrent [ ] 27 0 0 27 / 256 1.8s Rwlock concurrent [ ] 29 0 0 29 / 256 2.0s Rwlock concurrent [ ] 32 0 0 32 / 256 2.1s Rwlock concurrent [ ] 36 0 0 36 / 256 2.2s Rwlock concurrent [ ] 39 0 0 39 / 256 2.3s Rwlock concurrent [ ] 41 0 0 41 / 256 2.6s Rwlock concurrent [ ] 43 0 0 43 / 256 2.8s Rwlock concurrent [ ] 46 0 0 46 / 256 2.9s Rwlock concurrent [ ] 49 0 0 49 / 256 3.0s Rwlock concurrent [ ] 52 0 0 52 / 256 3.1s Rwlock concurrent [ ] 56 0 0 56 / 256 3.3s Rwlock concurrent [ ] 59 0 0 59 / 256 3.4s Rwlock concurrent [ ] 62 0 0 62 / 256 3.6s Rwlock concurrent [ ] 63 0 0 63 / 256 3.7s Rwlock concurrent [ ] 65 0 0 65 / 256 3.9s Rwlock concurrent [ ] 68 0 0 68 / 256 4.3s Rwlock concurrent [ ] 70 0 0 70 / 256 4.4s Rwlock concurrent [ ] 72 0 0 72 / 256 4.5s Rwlock concurrent [ ] 75 0 0 75 / 256 4.7s Rwlock concurrent [ ] 78 0 0 78 / 256 4.8s Rwlock concurrent [ ] 80 0 0 80 / 256 5.0s Rwlock concurrent [ ] 81 0 0 81 / 256 5.2s Rwlock concurrent [ ] 83 0 0 83 / 256 5.4s Rwlock concurrent [ ] 86 0 0 86 / 256 5.6s Rwlock concurrent [ ] 88 0 0 88 / 256 5.7s Rwlock concurrent [ ] 90 0 0 90 / 256 5.8s Rwlock concurrent [ ] 92 0 0 92 / 256 6.0s Rwlock concurrent [ ] 93 0 0 93 / 256 6.1s Rwlock concurrent [ ] 95 0 0 95 / 256 6.2s Rwlock concurrent [ ] 97 0 0 97 / 256 6.3s Rwlock concurrent [ ] 100 0 0 100 / 256 6.4s Rwlock concurrent [ ] 103 0 0 103 / 256 6.8s Rwlock concurrent [ ] 106 0 0 106 / 256 6.9s Rwlock concurrent [ ] 108 0 0 108 / 256 7.0s Rwlock concurrent [ ] 111 0 0 111 / 256 7.2s Rwlock concurrent [ ] 112 0 0 112 / 256 7.3s Rwlock concurrent [ ] 114 0 0 114 / 256 7.5s Rwlock concurrent [ ] 118 0 0 118 / 256 7.7s Rwlock concurrent [ ] 121 0 0 121 / 256 7.9s Rwlock concurrent [ ] 122 0 0 122 / 256 8.0s Rwlock concurrent [ ] 124 0 0 124 / 256 8.1s Rwlock concurrent [ ] 126 0 0 126 / 256 8.3s Rwlock concurrent [ ] 129 0 0 129 / 256 8.5s Rwlock concurrent [ ] 130 0 0 130 / 256 8.6s Rwlock concurrent [ ] 132 0 0 132 / 256 8.7s Rwlock concurrent [ ] 134 0 0 134 / 256 8.8s Rwlock concurrent [ ] 135 0 0 135 / 256 9.0s Rwlock concurrent [ ] 138 0 0 138 / 256 9.1s Rwlock concurrent [ ] 140 0 0 140 / 256 9.4s Rwlock concurrent [ ] 143 0 0 143 / 256 9.7s Rwlock concurrent [ ] 146 0 0 146 / 256 9.8s Rwlock concurrent [ ] 148 0 0 148 / 256 10.0s Rwlock concurrent [ ] 150 0 0 150 / 256 10.1s Rwlock concurrent [ ] 151 0 0 151 / 256 10.3s Rwlock concurrent [ ] 156 0 0 156 / 256 10.4s Rwlock concurrent [ ] 159 0 0 159 / 256 10.7s Rwlock concurrent [ ] 163 0 0 163 / 256 10.8s Rwlock concurrent [ ] 167 0 0 167 / 256 10.9s Rwlock concurrent [ ] 168 0 0 168 / 256 11.1s Rwlock concurrent [ ] 171 0 0 171 / 256 11.3s Rwlock concurrent [ ] 172 0 0 172 / 256 11.6s Rwlock concurrent [ ] 174 0 0 174 / 256 11.7s Rwlock concurrent [ ] 175 0 0 175 / 256 11.9s Rwlock concurrent [ ] 177 0 0 177 / 256 12.0s Rwlock concurrent [ ] 180 0 0 180 / 256 12.2s Rwlock concurrent [ ] 184 0 0 184 / 256 12.3s Rwlock concurrent [ ] 186 0 0 186 / 256 12.4s Rwlock concurrent [ ] 189 0 0 189 / 256 12.5s Rwlock concurrent [ ] 191 0 0 191 / 256 12.8s Rwlock concurrent [ ] 194 0 0 194 / 256 12.9s Rwlock concurrent [ ] 196 0 0 196 / 256 13.1s Rwlock concurrent [ ] 199 0 0 199 / 256 13.2s Rwlock concurrent [ ] 201 0 0 201 / 256 13.3s Rwlock concurrent [ ] 204 0 0 204 / 256 13.5s Rwlock concurrent [ ] 206 0 0 206 / 256 13.8s Rwlock concurrent [ ] 207 0 0 207 / 256 13.9s Rwlock concurrent [ ] 208 0 0 208 / 256 14.0s Rwlock concurrent [ ] 211 0 0 211 / 256 14.2s Rwlock concurrent [ ] 212 0 0 212 / 256 14.4s Rwlock concurrent [ ] 214 0 0 214 / 256 14.5s Rwlock concurrent [ ] 218 0 0 218 / 256 14.6s Rwlock concurrent [ ] 220 0 0 220 / 256 14.8s Rwlock concurrent [ ] 222 0 0 222 / 256 15.1s Rwlock concurrent [ ] 225 0 0 225 / 256 15.3s Rwlock concurrent [ ] 226 0 0 226 / 256 15.5s Rwlock concurrent [ ] 227 0 0 227 / 256 15.7s Rwlock concurrent [ ] 229 0 0 229 / 256 16.0s Rwlock concurrent [ ] 232 0 0 232 / 256 16.2s Rwlock concurrent [ ] 233 0 0 233 / 256 16.4s Rwlock concurrent [ ] 236 0 0 236 / 256 16.6s Rwlock concurrent [ ] 239 0 0 239 / 256 16.7s Rwlock concurrent [ ] 241 0 0 241 / 256 17.1s Rwlock concurrent [ ] 245 0 0 245 / 256 17.2s Rwlock concurrent [ ] 248 0 0 248 / 256 17.3s Rwlock concurrent [ ] 251 0 0 251 / 256 17.5s Rwlock concurrent [ ] 254 0 0 254 / 256 17.6s Rwlock concurrent [ ] 256 0 0 256 / 256 17.7s Rwlock concurrent [✓] 256 0 0 256 / 256 17.7s Rwlock concurrent ================================================================================ success (ran 2 tests) random seed: 2143899144611657131 generated error fail pass / total time test name [ ] 0 0 0 0 / 374 0.0s Rwlock sequential [✓] 374 0 0 374 / 374 0.0s Rwlock sequential [ ] 0 0 0 0 / 374 0.0s Rwlock concurrent [ ] 1 0 0 1 / 374 0.1s Rwlock concurrent [ ] 3 0 0 3 / 374 0.3s Rwlock concurrent [ ] 6 0 0 6 / 374 0.5s Rwlock concurrent [ ] 9 0 0 9 / 374 0.7s Rwlock concurrent [ ] 11 0 0 11 / 374 0.8s Rwlock concurrent [ ] 12 0 0 12 / 374 1.0s Rwlock concurrent [ ] 15 0 0 15 / 374 1.2s Rwlock concurrent [ ] 17 0 0 17 / 374 1.3s Rwlock concurrent [ ] 19 0 0 19 / 374 1.4s Rwlock concurrent [ ] 21 0 0 21 / 374 1.5s Rwlock concurrent [ ] 24 0 0 24 / 374 1.7s Rwlock concurrent [ ] 25 0 0 25 / 374 1.8s Rwlock concurrent [ ] 28 0 0 28 / 374 1.9s Rwlock concurrent [ ] 31 0 0 31 / 374 2.0s Rwlock concurrent [ ] 32 0 0 32 / 374 2.1s Rwlock concurrent [ ] 33 0 0 33 / 374 2.2s Rwlock concurrent [ ] 35 0 0 35 / 374 2.4s Rwlock concurrent [ ] 38 0 0 38 / 374 2.7s Rwlock concurrent [ ] 41 0 0 41 / 374 2.8s Rwlock concurrent [ ] 43 0 0 43 / 374 3.0s Rwlock concurrent [ ] 46 0 0 46 / 374 3.2s Rwlock concurrent [ ] 49 0 0 49 / 374 3.3s Rwlock concurrent [ ] 52 0 0 52 / 374 3.6s Rwlock concurrent [ ] 54 0 0 54 / 374 3.9s Rwlock concurrent [ ] 57 0 0 57 / 374 4.1s Rwlock concurrent [ ] 60 0 0 60 / 374 4.3s Rwlock concurrent [ ] 62 0 0 62 / 374 4.4s Rwlock concurrent [ ] 63 0 0 63 / 374 4.6s Rwlock concurrent [ ] 65 0 0 65 / 374 4.9s Rwlock concurrent [ ] 68 0 0 68 / 374 5.1s Rwlock concurrent [ ] 70 0 0 70 / 374 5.2s Rwlock concurrent [ ] 73 0 0 73 / 374 5.3s Rwlock concurrent [ ] 75 0 0 75 / 374 5.6s Rwlock concurrent [ ] 76 0 0 76 / 374 5.8s Rwlock concurrent [ ] 79 0 0 79 / 374 5.9s Rwlock concurrent [ ] 81 0 0 81 / 374 6.0s Rwlock concurrent [ ] 84 0 0 84 / 374 6.2s Rwlock concurrent [ ] 85 0 0 85 / 374 6.3s Rwlock concurrent [ ] 87 0 0 87 / 374 6.5s Rwlock concurrent [ ] 88 0 0 88 / 374 6.7s Rwlock concurrent [ ] 91 0 0 91 / 374 6.9s Rwlock concurrent [ ] 92 0 0 92 / 374 7.2s Rwlock concurrent [ ] 95 0 0 95 / 374 7.4s Rwlock concurrent [ ] 97 0 0 97 / 374 7.5s Rwlock concurrent [ ] 99 0 0 99 / 374 7.6s Rwlock concurrent [ ] 102 0 0 102 / 374 7.8s Rwlock concurrent [ ] 105 0 0 105 / 374 8.0s Rwlock concurrent [ ] 108 0 0 108 / 374 8.1s Rwlock concurrent [ ] 110 0 0 110 / 374 8.3s Rwlock concurrent [ ] 113 0 0 113 / 374 8.4s Rwlock concurrent [ ] 115 0 0 115 / 374 8.5s Rwlock concurrent [ ] 118 0 0 118 / 374 8.7s Rwlock concurrent [ ] 121 0 0 121 / 374 8.9s Rwlock concurrent [ ] 123 0 0 123 / 374 9.0s Rwlock concurrent [ ] 125 0 0 125 / 374 9.1s Rwlock concurrent [ ] 126 0 0 126 / 374 9.2s Rwlock concurrent [ ] 128 0 0 128 / 374 9.4s Rwlock concurrent [ ] 131 0 0 131 / 374 9.5s Rwlock concurrent [ ] 133 0 0 133 / 374 9.6s Rwlock concurrent [ ] 134 0 0 134 / 374 9.7s Rwlock concurrent [ ] 136 0 0 136 / 374 10.1s Rwlock concurrent [ ] 139 0 0 139 / 374 10.2s Rwlock concurrent [ ] 142 0 0 142 / 374 10.3s Rwlock concurrent [ ] 144 0 0 144 / 374 10.5s Rwlock concurrent [ ] 146 0 0 146 / 374 10.7s Rwlock concurrent [ ] 150 0 0 150 / 374 10.8s Rwlock concurrent [ ] 153 0 0 153 / 374 10.9s Rwlock concurrent [ ] 156 0 0 156 / 374 11.1s Rwlock concurrent [ ] 160 0 0 160 / 374 11.2s Rwlock concurrent [ ] 163 0 0 163 / 374 11.3s Rwlock concurrent [ ] 166 0 0 166 / 374 11.4s Rwlock concurrent [ ] 169 0 0 169 / 374 11.6s Rwlock concurrent [ ] 173 0 0 173 / 374 11.7s Rwlock concurrent [ ] 176 0 0 176 / 374 11.8s Rwlock concurrent [ ] 179 0 0 179 / 374 11.9s Rwlock concurrent [ ] 182 0 0 182 / 374 12.1s Rwlock concurrent [ ] 184 0 0 184 / 374 12.2s Rwlock concurrent [ ] 187 0 0 187 / 374 12.4s Rwlock concurrent [ ] 190 0 0 190 / 374 12.6s Rwlock concurrent [ ] 193 0 0 193 / 374 12.7s Rwlock concurrent [ ] 195 0 0 195 / 374 12.8s Rwlock concurrent [ ] 198 0 0 198 / 374 12.9s Rwlock concurrent [ ] 201 0 0 201 / 374 13.0s Rwlock concurrent [ ] 205 0 0 205 / 374 13.2s Rwlock concurrent [ ] 208 0 0 208 / 374 13.3s Rwlock concurrent [ ] 209 0 0 209 / 374 13.5s Rwlock concurrent [ ] 212 0 0 212 / 374 13.6s Rwlock concurrent [ ] 215 0 0 215 / 374 13.7s Rwlock concurrent [ ] 218 0 0 218 / 374 14.0s Rwlock concurrent [ ] 221 0 0 221 / 374 14.3s Rwlock concurrent [ ] 224 0 0 224 / 374 14.4s Rwlock concurrent [ ] 226 0 0 226 / 374 14.5s Rwlock concurrent [ ] 229 0 0 229 / 374 14.7s Rwlock concurrent [ ] 232 0 0 232 / 374 14.8s Rwlock concurrent [ ] 235 0 0 235 / 374 15.0s Rwlock concurrent [ ] 238 0 0 238 / 374 15.1s Rwlock concurrent [ ] 241 0 0 241 / 374 15.2s Rwlock concurrent [ ] 243 0 0 243 / 374 15.3s Rwlock concurrent [ ] 245 0 0 245 / 374 15.4s Rwlock concurrent [ ] 248 0 0 248 / 374 15.6s Rwlock concurrent [ ] 250 0 0 250 / 374 15.7s Rwlock concurrent [ ] 253 0 0 253 / 374 15.8s Rwlock concurrent [ ] 254 0 0 254 / 374 16.0s Rwlock concurrent [ ] 256 0 0 256 / 374 16.2s Rwlock concurrent [ ] 259 0 0 259 / 374 16.3s Rwlock concurrent [ ] 261 0 0 261 / 374 16.5s Rwlock concurrent [ ] 264 0 0 264 / 374 16.6s Rwlock concurrent [ ] 265 0 0 265 / 374 16.7s Rwlock concurrent [ ] 266 0 0 266 / 374 16.9s Rwlock concurrent [ ] 268 0 0 268 / 374 17.1s Rwlock concurrent [ ] 271 0 0 271 / 374 17.5s Rwlock concurrent [ ] 274 0 0 274 / 374 17.6s Rwlock concurrent [ ] 277 0 0 277 / 374 17.7s Rwlock concurrent [ ] 281 0 0 281 / 374 17.8s Rwlock concurrent [ ] 284 0 0 284 / 374 18.0s Rwlock concurrent [ ] 285 0 0 285 / 374 18.2s Rwlock concurrent [ ] 289 0 0 289 / 374 18.3s Rwlock concurrent [ ] 292 0 0 292 / 374 18.4s Rwlock concurrent [ ] 295 0 0 295 / 374 18.5s Rwlock concurrent [ ] 298 0 0 298 / 374 18.6s Rwlock concurrent [ ] 300 0 0 300 / 374 18.8s Rwlock concurrent [ ] 303 0 0 303 / 374 18.9s Rwlock concurrent [ ] 305 0 0 305 / 374 19.0s Rwlock concurrent [ ] 308 0 0 308 / 374 19.1s Rwlock concurrent [ ] 311 0 0 311 / 374 19.2s Rwlock concurrent [ ] 313 0 0 313 / 374 19.4s Rwlock concurrent [ ] 316 0 0 316 / 374 19.5s Rwlock concurrent [ ] 319 0 0 319 / 374 19.6s Rwlock concurrent [ ] 322 0 0 322 / 374 19.8s Rwlock concurrent [ ] 324 0 0 324 / 374 20.0s Rwlock concurrent [ ] 326 0 0 326 / 374 20.1s Rwlock concurrent [ ] 330 0 0 330 / 374 20.2s Rwlock concurrent [ ] 332 0 0 332 / 374 20.4s Rwlock concurrent [ ] 334 0 0 334 / 374 20.6s Rwlock concurrent [ ] 336 0 0 336 / 374 20.7s Rwlock concurrent [ ] 339 0 0 339 / 374 20.9s Rwlock concurrent [ ] 341 0 0 341 / 374 21.0s Rwlock concurrent [ ] 343 0 0 343 / 374 21.2s Rwlock concurrent [ ] 347 0 0 347 / 374 21.3s Rwlock concurrent [ ] 351 0 0 351 / 374 21.5s Rwlock concurrent [ ] 355 0 0 355 / 374 21.6s Rwlock concurrent [ ] 356 0 0 356 / 374 21.8s Rwlock concurrent [ ] 357 0 0 357 / 374 22.0s Rwlock concurrent [ ] 359 0 0 359 / 374 22.1s Rwlock concurrent [ ] 362 0 0 362 / 374 22.2s Rwlock concurrent [ ] 364 0 0 364 / 374 22.3s Rwlock concurrent [ ] 366 0 0 366 / 374 22.5s Rwlock concurrent [ ] 369 0 0 369 / 374 22.6s Rwlock concurrent [ ] 372 0 0 372 / 374 22.8s Rwlock concurrent [ ] 373 0 0 373 / 374 22.9s Rwlock concurrent [✓] 374 0 0 374 / 374 22.9s Rwlock concurrent ================================================================================ success (ran 2 tests) random seed: 3546630874967804810 generated error fail pass / total time test name [ ] 0 0 0 0 / 50 0.0s Rwlock sequential [✓] 50 0 0 50 / 50 0.0s Rwlock sequential [ ] 0 0 0 0 / 50 0.0s Rwlock concurrent [ ] 1 0 0 1 / 50 0.1s Rwlock concurrent [ ] 2 0 0 2 / 50 0.3s Rwlock concurrent [ ] 6 0 0 6 / 50 0.4s Rwlock concurrent [ ] 7 0 0 7 / 50 0.6s Rwlock concurrent [ ] 9 0 0 9 / 50 0.7s Rwlock concurrent [ ] 13 0 0 13 / 50 0.9s Rwlock concurrent [ ] 17 0 0 17 / 50 1.0s Rwlock concurrent [ ] 20 0 0 20 / 50 1.1s Rwlock concurrent [ ] 22 0 0 22 / 50 1.3s Rwlock concurrent [ ] 23 0 0 23 / 50 1.4s Rwlock concurrent [ ] 26 0 0 26 / 50 1.5s Rwlock concurrent [ ] 27 0 0 27 / 50 1.7s Rwlock concurrent [ ] 29 0 0 29 / 50 1.9s Rwlock concurrent [ ] 33 0 0 33 / 50 2.0s Rwlock concurrent [ ] 36 0 0 36 / 50 2.2s Rwlock concurrent [ ] 39 0 0 39 / 50 2.3s Rwlock concurrent [ ] 42 0 0 42 / 50 2.4s Rwlock concurrent [ ] 44 0 0 44 / 50 2.5s Rwlock concurrent [ ] 47 0 0 47 / 50 2.6s Rwlock concurrent [ ] 50 0 0 50 / 50 2.8s Rwlock concurrent [✓] 50 0 0 50 / 50 2.8s Rwlock concurrent ================================================================================ success (ran 2 tests) random seed: 316580871697001303 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Rwlock sequential [✓] 32 0 0 32 / 32 0.0s Rwlock sequential [ ] 0 0 0 0 / 32 0.0s Rwlock concurrent [ ] 3 0 0 3 / 32 0.1s Rwlock concurrent [ ] 5 0 0 5 / 32 0.4s Rwlock concurrent [ ] 8 0 0 8 / 32 0.6s Rwlock concurrent [ ] 12 0 0 12 / 32 0.8s Rwlock concurrent [ ] 17 0 0 17 / 32 0.9s Rwlock concurrent [ ] 20 0 0 20 / 32 1.0s Rwlock concurrent [ ] 24 0 0 24 / 32 1.2s Rwlock concurrent [ ] 28 0 0 28 / 32 1.3s Rwlock concurrent [ ] 32 0 0 32 / 32 1.4s Rwlock concurrent [✓] 32 0 0 32 / 32 1.4s Rwlock concurrent ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_schedulers.exe) Testing `Picos schedulers'. This run has ID `D5GIKVX1'. [OK] Trivial main returns 0 [OK] Scheduler completes main computation 0 [OK] Current 0 [OK] Cancel_after 0 basic. [OK] Cancel_after 1 long timeout. [OK] Operation on canceled fiber raises 0 [OK] Cross scheduler wakeup 0 [OK] Fatal exception terminates scheduler 0 Full test results in `~/src/_build/default/test/_build/_tests/Picos schedulers'. Test Successful in 60.468s. 8 tests run. Thread 104 killed on uncaught exception Failure("fatal") Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15 Called from Thread.create.(fun) in file "thread.ml", line 49, characters 8-14 2025-03-13 16:00.28 ---> saved as "acf071ba9f4e3202e1c7f16a204464705cde04a17a15197b7439e54274acb675" Job succeeded 2025-03-13 16:00.40: Job succeeded