tests.json 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106
  1. [
  2. {
  3. "flaky": false,
  4. "language": "c",
  5. "name": "alarm_heap_test",
  6. "platforms": [
  7. "posix",
  8. "windows"
  9. ]
  10. },
  11. {
  12. "flaky": false,
  13. "language": "c",
  14. "name": "alarm_list_test",
  15. "platforms": [
  16. "posix",
  17. "windows"
  18. ]
  19. },
  20. {
  21. "flaky": false,
  22. "language": "c",
  23. "name": "alarm_test",
  24. "platforms": [
  25. "posix",
  26. "windows"
  27. ]
  28. },
  29. {
  30. "flaky": false,
  31. "language": "c",
  32. "name": "alpn_test",
  33. "platforms": [
  34. "posix",
  35. "windows"
  36. ]
  37. },
  38. {
  39. "flaky": false,
  40. "language": "c",
  41. "name": "bin_encoder_test",
  42. "platforms": [
  43. "posix",
  44. "windows"
  45. ]
  46. },
  47. {
  48. "flaky": false,
  49. "language": "c",
  50. "name": "chttp2_status_conversion_test",
  51. "platforms": [
  52. "posix",
  53. "windows"
  54. ]
  55. },
  56. {
  57. "flaky": false,
  58. "language": "c",
  59. "name": "chttp2_stream_encoder_test",
  60. "platforms": [
  61. "posix",
  62. "windows"
  63. ]
  64. },
  65. {
  66. "flaky": false,
  67. "language": "c",
  68. "name": "chttp2_stream_map_test",
  69. "platforms": [
  70. "posix",
  71. "windows"
  72. ]
  73. },
  74. {
  75. "flaky": false,
  76. "language": "c",
  77. "name": "dualstack_socket_test",
  78. "platforms": [
  79. "linux",
  80. "mac",
  81. "posix"
  82. ]
  83. },
  84. {
  85. "flaky": false,
  86. "language": "c",
  87. "name": "fd_conservation_posix_test",
  88. "platforms": [
  89. "linux",
  90. "mac",
  91. "posix"
  92. ]
  93. },
  94. {
  95. "flaky": false,
  96. "language": "c",
  97. "name": "fd_posix_test",
  98. "platforms": [
  99. "linux",
  100. "mac",
  101. "posix"
  102. ]
  103. },
  104. {
  105. "flaky": false,
  106. "language": "c",
  107. "name": "fling_stream_test",
  108. "platforms": [
  109. "linux",
  110. "mac",
  111. "posix"
  112. ]
  113. },
  114. {
  115. "flaky": false,
  116. "language": "c",
  117. "name": "fling_test",
  118. "platforms": [
  119. "linux",
  120. "mac",
  121. "posix"
  122. ]
  123. },
  124. {
  125. "flaky": false,
  126. "language": "c",
  127. "name": "gpr_cancellable_test",
  128. "platforms": [
  129. "posix",
  130. "windows"
  131. ]
  132. },
  133. {
  134. "flaky": false,
  135. "language": "c",
  136. "name": "gpr_cmdline_test",
  137. "platforms": [
  138. "posix",
  139. "windows"
  140. ]
  141. },
  142. {
  143. "flaky": false,
  144. "language": "c",
  145. "name": "gpr_env_test",
  146. "platforms": [
  147. "posix",
  148. "windows"
  149. ]
  150. },
  151. {
  152. "flaky": false,
  153. "language": "c",
  154. "name": "gpr_file_test",
  155. "platforms": [
  156. "posix",
  157. "windows"
  158. ]
  159. },
  160. {
  161. "flaky": false,
  162. "language": "c",
  163. "name": "gpr_histogram_test",
  164. "platforms": [
  165. "posix",
  166. "windows"
  167. ]
  168. },
  169. {
  170. "flaky": false,
  171. "language": "c",
  172. "name": "gpr_host_port_test",
  173. "platforms": [
  174. "posix",
  175. "windows"
  176. ]
  177. },
  178. {
  179. "flaky": false,
  180. "language": "c",
  181. "name": "gpr_log_test",
  182. "platforms": [
  183. "posix",
  184. "windows"
  185. ]
  186. },
  187. {
  188. "flaky": false,
  189. "language": "c",
  190. "name": "gpr_slice_buffer_test",
  191. "platforms": [
  192. "posix",
  193. "windows"
  194. ]
  195. },
  196. {
  197. "flaky": false,
  198. "language": "c",
  199. "name": "gpr_slice_test",
  200. "platforms": [
  201. "posix",
  202. "windows"
  203. ]
  204. },
  205. {
  206. "flaky": false,
  207. "language": "c",
  208. "name": "gpr_stack_lockfree_test",
  209. "platforms": [
  210. "posix",
  211. "windows"
  212. ]
  213. },
  214. {
  215. "flaky": false,
  216. "language": "c",
  217. "name": "gpr_string_test",
  218. "platforms": [
  219. "posix",
  220. "windows"
  221. ]
  222. },
  223. {
  224. "flaky": false,
  225. "language": "c",
  226. "name": "gpr_sync_test",
  227. "platforms": [
  228. "posix",
  229. "windows"
  230. ]
  231. },
  232. {
  233. "flaky": false,
  234. "language": "c",
  235. "name": "gpr_thd_test",
  236. "platforms": [
  237. "posix",
  238. "windows"
  239. ]
  240. },
  241. {
  242. "flaky": false,
  243. "language": "c",
  244. "name": "gpr_time_test",
  245. "platforms": [
  246. "posix",
  247. "windows"
  248. ]
  249. },
  250. {
  251. "flaky": false,
  252. "language": "c",
  253. "name": "gpr_tls_test",
  254. "platforms": [
  255. "posix",
  256. "windows"
  257. ]
  258. },
  259. {
  260. "flaky": false,
  261. "language": "c",
  262. "name": "gpr_useful_test",
  263. "platforms": [
  264. "posix",
  265. "windows"
  266. ]
  267. },
  268. {
  269. "flaky": false,
  270. "language": "c",
  271. "name": "grpc_auth_context_test",
  272. "platforms": [
  273. "posix",
  274. "windows"
  275. ]
  276. },
  277. {
  278. "flaky": false,
  279. "language": "c",
  280. "name": "grpc_base64_test",
  281. "platforms": [
  282. "posix",
  283. "windows"
  284. ]
  285. },
  286. {
  287. "flaky": false,
  288. "language": "c",
  289. "name": "grpc_byte_buffer_reader_test",
  290. "platforms": [
  291. "posix",
  292. "windows"
  293. ]
  294. },
  295. {
  296. "flaky": false,
  297. "language": "c",
  298. "name": "grpc_channel_stack_test",
  299. "platforms": [
  300. "posix",
  301. "windows"
  302. ]
  303. },
  304. {
  305. "flaky": false,
  306. "language": "c",
  307. "name": "grpc_completion_queue_test",
  308. "platforms": [
  309. "posix",
  310. "windows"
  311. ]
  312. },
  313. {
  314. "flaky": false,
  315. "language": "c",
  316. "name": "grpc_credentials_test",
  317. "platforms": [
  318. "posix",
  319. "windows"
  320. ]
  321. },
  322. {
  323. "flaky": false,
  324. "language": "c",
  325. "name": "grpc_json_token_test",
  326. "platforms": [
  327. "posix",
  328. "windows"
  329. ]
  330. },
  331. {
  332. "flaky": false,
  333. "language": "c",
  334. "name": "grpc_jwt_verifier_test",
  335. "platforms": [
  336. "posix",
  337. "windows"
  338. ]
  339. },
  340. {
  341. "flaky": false,
  342. "language": "c",
  343. "name": "grpc_security_connector_test",
  344. "platforms": [
  345. "posix",
  346. "windows"
  347. ]
  348. },
  349. {
  350. "flaky": false,
  351. "language": "c",
  352. "name": "grpc_stream_op_test",
  353. "platforms": [
  354. "posix",
  355. "windows"
  356. ]
  357. },
  358. {
  359. "flaky": false,
  360. "language": "c",
  361. "name": "hpack_parser_test",
  362. "platforms": [
  363. "posix",
  364. "windows"
  365. ]
  366. },
  367. {
  368. "flaky": false,
  369. "language": "c",
  370. "name": "hpack_table_test",
  371. "platforms": [
  372. "posix",
  373. "windows"
  374. ]
  375. },
  376. {
  377. "flaky": false,
  378. "language": "c",
  379. "name": "httpcli_format_request_test",
  380. "platforms": [
  381. "posix",
  382. "windows"
  383. ]
  384. },
  385. {
  386. "flaky": false,
  387. "language": "c",
  388. "name": "httpcli_parser_test",
  389. "platforms": [
  390. "posix",
  391. "windows"
  392. ]
  393. },
  394. {
  395. "flaky": false,
  396. "language": "c",
  397. "name": "httpcli_test",
  398. "platforms": [
  399. "linux",
  400. "mac",
  401. "posix"
  402. ]
  403. },
  404. {
  405. "flaky": false,
  406. "language": "c",
  407. "name": "json_rewrite_test",
  408. "platforms": [
  409. "posix",
  410. "windows"
  411. ]
  412. },
  413. {
  414. "flaky": false,
  415. "language": "c",
  416. "name": "json_test",
  417. "platforms": [
  418. "posix",
  419. "windows"
  420. ]
  421. },
  422. {
  423. "flaky": false,
  424. "language": "c",
  425. "name": "lame_client_test",
  426. "platforms": [
  427. "posix",
  428. "windows"
  429. ]
  430. },
  431. {
  432. "flaky": false,
  433. "language": "c",
  434. "name": "message_compress_test",
  435. "platforms": [
  436. "posix",
  437. "windows"
  438. ]
  439. },
  440. {
  441. "flaky": false,
  442. "language": "c",
  443. "name": "multi_init_test",
  444. "platforms": [
  445. "posix",
  446. "windows"
  447. ]
  448. },
  449. {
  450. "flaky": false,
  451. "language": "c",
  452. "name": "multiple_server_queues_test",
  453. "platforms": [
  454. "posix",
  455. "windows"
  456. ]
  457. },
  458. {
  459. "flaky": false,
  460. "language": "c",
  461. "name": "murmur_hash_test",
  462. "platforms": [
  463. "posix",
  464. "windows"
  465. ]
  466. },
  467. {
  468. "flaky": false,
  469. "language": "c",
  470. "name": "no_server_test",
  471. "platforms": [
  472. "posix",
  473. "windows"
  474. ]
  475. },
  476. {
  477. "flaky": false,
  478. "language": "c",
  479. "name": "resolve_address_test",
  480. "platforms": [
  481. "posix",
  482. "windows"
  483. ]
  484. },
  485. {
  486. "flaky": false,
  487. "language": "c",
  488. "name": "secure_endpoint_test",
  489. "platforms": [
  490. "posix",
  491. "windows"
  492. ]
  493. },
  494. {
  495. "flaky": false,
  496. "language": "c",
  497. "name": "sockaddr_utils_test",
  498. "platforms": [
  499. "posix",
  500. "windows"
  501. ]
  502. },
  503. {
  504. "flaky": false,
  505. "language": "c",
  506. "name": "tcp_client_posix_test",
  507. "platforms": [
  508. "linux",
  509. "mac",
  510. "posix"
  511. ]
  512. },
  513. {
  514. "flaky": false,
  515. "language": "c",
  516. "name": "tcp_posix_test",
  517. "platforms": [
  518. "linux",
  519. "mac",
  520. "posix"
  521. ]
  522. },
  523. {
  524. "flaky": false,
  525. "language": "c",
  526. "name": "tcp_server_posix_test",
  527. "platforms": [
  528. "linux",
  529. "mac",
  530. "posix"
  531. ]
  532. },
  533. {
  534. "flaky": false,
  535. "language": "c",
  536. "name": "time_averaged_stats_test",
  537. "platforms": [
  538. "posix",
  539. "windows"
  540. ]
  541. },
  542. {
  543. "flaky": false,
  544. "language": "c",
  545. "name": "timeout_encoding_test",
  546. "platforms": [
  547. "posix",
  548. "windows"
  549. ]
  550. },
  551. {
  552. "flaky": false,
  553. "language": "c",
  554. "name": "timers_test",
  555. "platforms": [
  556. "posix",
  557. "windows"
  558. ]
  559. },
  560. {
  561. "flaky": false,
  562. "language": "c",
  563. "name": "transport_metadata_test",
  564. "platforms": [
  565. "posix",
  566. "windows"
  567. ]
  568. },
  569. {
  570. "flaky": false,
  571. "language": "c",
  572. "name": "transport_security_test",
  573. "platforms": [
  574. "posix",
  575. "windows"
  576. ]
  577. },
  578. {
  579. "flaky": false,
  580. "language": "c",
  581. "name": "uri_parser_test",
  582. "platforms": [
  583. "posix",
  584. "windows"
  585. ]
  586. },
  587. {
  588. "flaky": false,
  589. "language": "c++",
  590. "name": "async_end2end_test",
  591. "platforms": [
  592. "posix",
  593. "windows"
  594. ]
  595. },
  596. {
  597. "flaky": false,
  598. "language": "c++",
  599. "name": "async_streaming_ping_pong_test",
  600. "platforms": [
  601. "linux",
  602. "mac",
  603. "posix"
  604. ]
  605. },
  606. {
  607. "flaky": false,
  608. "language": "c++",
  609. "name": "async_unary_ping_pong_test",
  610. "platforms": [
  611. "linux",
  612. "mac",
  613. "posix"
  614. ]
  615. },
  616. {
  617. "flaky": false,
  618. "language": "c++",
  619. "name": "auth_property_iterator_test",
  620. "platforms": [
  621. "posix",
  622. "windows"
  623. ]
  624. },
  625. {
  626. "flaky": false,
  627. "language": "c++",
  628. "name": "channel_arguments_test",
  629. "platforms": [
  630. "posix",
  631. "windows"
  632. ]
  633. },
  634. {
  635. "flaky": false,
  636. "language": "c++",
  637. "name": "cli_call_test",
  638. "platforms": [
  639. "posix",
  640. "windows"
  641. ]
  642. },
  643. {
  644. "flaky": false,
  645. "language": "c++",
  646. "name": "client_crash_test",
  647. "platforms": [
  648. "linux",
  649. "mac",
  650. "posix"
  651. ]
  652. },
  653. {
  654. "flaky": false,
  655. "language": "c++",
  656. "name": "credentials_test",
  657. "platforms": [
  658. "posix",
  659. "windows"
  660. ]
  661. },
  662. {
  663. "flaky": false,
  664. "language": "c++",
  665. "name": "cxx_byte_buffer_test",
  666. "platforms": [
  667. "posix",
  668. "windows"
  669. ]
  670. },
  671. {
  672. "flaky": false,
  673. "language": "c++",
  674. "name": "cxx_slice_test",
  675. "platforms": [
  676. "posix",
  677. "windows"
  678. ]
  679. },
  680. {
  681. "flaky": false,
  682. "language": "c++",
  683. "name": "cxx_time_test",
  684. "platforms": [
  685. "posix",
  686. "windows"
  687. ]
  688. },
  689. {
  690. "flaky": false,
  691. "language": "c++",
  692. "name": "dynamic_thread_pool_test",
  693. "platforms": [
  694. "posix",
  695. "windows"
  696. ]
  697. },
  698. {
  699. "flaky": false,
  700. "language": "c++",
  701. "name": "end2end_test",
  702. "platforms": [
  703. "posix",
  704. "windows"
  705. ]
  706. },
  707. {
  708. "flaky": false,
  709. "language": "c++",
  710. "name": "fixed_size_thread_pool_test",
  711. "platforms": [
  712. "posix",
  713. "windows"
  714. ]
  715. },
  716. {
  717. "flaky": false,
  718. "language": "c++",
  719. "name": "generic_end2end_test",
  720. "platforms": [
  721. "posix",
  722. "windows"
  723. ]
  724. },
  725. {
  726. "flaky": false,
  727. "language": "c++",
  728. "name": "interop_test",
  729. "platforms": [
  730. "linux",
  731. "mac",
  732. "posix"
  733. ]
  734. },
  735. {
  736. "flaky": false,
  737. "language": "c++",
  738. "name": "mock_test",
  739. "platforms": [
  740. "posix",
  741. "windows"
  742. ]
  743. },
  744. {
  745. "flaky": false,
  746. "language": "c++",
  747. "name": "qps_openloop_test",
  748. "platforms": [
  749. "linux",
  750. "mac",
  751. "posix"
  752. ]
  753. },
  754. {
  755. "flaky": false,
  756. "language": "c++",
  757. "name": "qps_test",
  758. "platforms": [
  759. "linux",
  760. "mac",
  761. "posix"
  762. ]
  763. },
  764. {
  765. "flaky": false,
  766. "language": "c++",
  767. "name": "secure_auth_context_test",
  768. "platforms": [
  769. "posix",
  770. "windows"
  771. ]
  772. },
  773. {
  774. "flaky": false,
  775. "language": "c++",
  776. "name": "server_crash_test",
  777. "platforms": [
  778. "linux",
  779. "mac",
  780. "posix"
  781. ]
  782. },
  783. {
  784. "flaky": false,
  785. "language": "c++",
  786. "name": "status_test",
  787. "platforms": [
  788. "posix",
  789. "windows"
  790. ]
  791. },
  792. {
  793. "flaky": false,
  794. "language": "c++",
  795. "name": "sync_streaming_ping_pong_test",
  796. "platforms": [
  797. "linux",
  798. "mac",
  799. "posix"
  800. ]
  801. },
  802. {
  803. "flaky": false,
  804. "language": "c++",
  805. "name": "sync_unary_ping_pong_test",
  806. "platforms": [
  807. "linux",
  808. "mac",
  809. "posix"
  810. ]
  811. },
  812. {
  813. "flaky": false,
  814. "language": "c++",
  815. "name": "thread_stress_test",
  816. "platforms": [
  817. "posix",
  818. "windows"
  819. ]
  820. },
  821. {
  822. "flaky": false,
  823. "language": "c",
  824. "name": "chttp2_fake_security_bad_hostname_test",
  825. "platforms": [
  826. "linux",
  827. "mac",
  828. "posix",
  829. "windows"
  830. ]
  831. },
  832. {
  833. "flaky": false,
  834. "language": "c",
  835. "name": "chttp2_fake_security_cancel_after_accept_test",
  836. "platforms": [
  837. "linux",
  838. "mac",
  839. "posix",
  840. "windows"
  841. ]
  842. },
  843. {
  844. "flaky": false,
  845. "language": "c",
  846. "name": "chttp2_fake_security_cancel_after_accept_and_writes_closed_test",
  847. "platforms": [
  848. "linux",
  849. "mac",
  850. "posix",
  851. "windows"
  852. ]
  853. },
  854. {
  855. "flaky": false,
  856. "language": "c",
  857. "name": "chttp2_fake_security_cancel_after_invoke_test",
  858. "platforms": [
  859. "linux",
  860. "mac",
  861. "posix",
  862. "windows"
  863. ]
  864. },
  865. {
  866. "flaky": false,
  867. "language": "c",
  868. "name": "chttp2_fake_security_cancel_before_invoke_test",
  869. "platforms": [
  870. "linux",
  871. "mac",
  872. "posix",
  873. "windows"
  874. ]
  875. },
  876. {
  877. "flaky": false,
  878. "language": "c",
  879. "name": "chttp2_fake_security_cancel_in_a_vacuum_test",
  880. "platforms": [
  881. "linux",
  882. "mac",
  883. "posix",
  884. "windows"
  885. ]
  886. },
  887. {
  888. "flaky": false,
  889. "language": "c",
  890. "name": "chttp2_fake_security_census_simple_request_test",
  891. "platforms": [
  892. "linux",
  893. "mac",
  894. "posix",
  895. "windows"
  896. ]
  897. },
  898. {
  899. "flaky": false,
  900. "language": "c",
  901. "name": "chttp2_fake_security_channel_connectivity_test",
  902. "platforms": [
  903. "linux",
  904. "mac",
  905. "posix",
  906. "windows"
  907. ]
  908. },
  909. {
  910. "flaky": false,
  911. "language": "c",
  912. "name": "chttp2_fake_security_default_host_test",
  913. "platforms": [
  914. "linux",
  915. "mac",
  916. "posix",
  917. "windows"
  918. ]
  919. },
  920. {
  921. "flaky": false,
  922. "language": "c",
  923. "name": "chttp2_fake_security_disappearing_server_test",
  924. "platforms": [
  925. "linux",
  926. "mac",
  927. "posix",
  928. "windows"
  929. ]
  930. },
  931. {
  932. "flaky": false,
  933. "language": "c",
  934. "name": "chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test",
  935. "platforms": [
  936. "linux",
  937. "mac",
  938. "posix",
  939. "windows"
  940. ]
  941. },
  942. {
  943. "flaky": false,
  944. "language": "c",
  945. "name": "chttp2_fake_security_early_server_shutdown_finishes_tags_test",
  946. "platforms": [
  947. "linux",
  948. "mac",
  949. "posix",
  950. "windows"
  951. ]
  952. },
  953. {
  954. "flaky": false,
  955. "language": "c",
  956. "name": "chttp2_fake_security_empty_batch_test",
  957. "platforms": [
  958. "linux",
  959. "mac",
  960. "posix",
  961. "windows"
  962. ]
  963. },
  964. {
  965. "flaky": false,
  966. "language": "c",
  967. "name": "chttp2_fake_security_graceful_server_shutdown_test",
  968. "platforms": [
  969. "linux",
  970. "mac",
  971. "posix",
  972. "windows"
  973. ]
  974. },
  975. {
  976. "flaky": false,
  977. "language": "c",
  978. "name": "chttp2_fake_security_invoke_large_request_test",
  979. "platforms": [
  980. "linux",
  981. "mac",
  982. "posix",
  983. "windows"
  984. ]
  985. },
  986. {
  987. "flaky": false,
  988. "language": "c",
  989. "name": "chttp2_fake_security_max_concurrent_streams_test",
  990. "platforms": [
  991. "linux",
  992. "mac",
  993. "posix",
  994. "windows"
  995. ]
  996. },
  997. {
  998. "flaky": false,
  999. "language": "c",
  1000. "name": "chttp2_fake_security_max_message_length_test",
  1001. "platforms": [
  1002. "linux",
  1003. "mac",
  1004. "posix",
  1005. "windows"
  1006. ]
  1007. },
  1008. {
  1009. "flaky": false,
  1010. "language": "c",
  1011. "name": "chttp2_fake_security_no_op_test",
  1012. "platforms": [
  1013. "linux",
  1014. "mac",
  1015. "posix",
  1016. "windows"
  1017. ]
  1018. },
  1019. {
  1020. "flaky": false,
  1021. "language": "c",
  1022. "name": "chttp2_fake_security_ping_pong_streaming_test",
  1023. "platforms": [
  1024. "linux",
  1025. "mac",
  1026. "posix",
  1027. "windows"
  1028. ]
  1029. },
  1030. {
  1031. "flaky": false,
  1032. "language": "c",
  1033. "name": "chttp2_fake_security_registered_call_test",
  1034. "platforms": [
  1035. "linux",
  1036. "mac",
  1037. "posix",
  1038. "windows"
  1039. ]
  1040. },
  1041. {
  1042. "flaky": false,
  1043. "language": "c",
  1044. "name": "chttp2_fake_security_request_response_with_binary_metadata_and_payload_test",
  1045. "platforms": [
  1046. "linux",
  1047. "mac",
  1048. "posix",
  1049. "windows"
  1050. ]
  1051. },
  1052. {
  1053. "flaky": false,
  1054. "language": "c",
  1055. "name": "chttp2_fake_security_request_response_with_metadata_and_payload_test",
  1056. "platforms": [
  1057. "linux",
  1058. "mac",
  1059. "posix",
  1060. "windows"
  1061. ]
  1062. },
  1063. {
  1064. "flaky": false,
  1065. "language": "c",
  1066. "name": "chttp2_fake_security_request_response_with_payload_test",
  1067. "platforms": [
  1068. "linux",
  1069. "mac",
  1070. "posix",
  1071. "windows"
  1072. ]
  1073. },
  1074. {
  1075. "flaky": false,
  1076. "language": "c",
  1077. "name": "chttp2_fake_security_request_response_with_payload_and_call_creds_test",
  1078. "platforms": [
  1079. "linux",
  1080. "mac",
  1081. "posix",
  1082. "windows"
  1083. ]
  1084. },
  1085. {
  1086. "flaky": false,
  1087. "language": "c",
  1088. "name": "chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test",
  1089. "platforms": [
  1090. "linux",
  1091. "mac",
  1092. "posix",
  1093. "windows"
  1094. ]
  1095. },
  1096. {
  1097. "flaky": false,
  1098. "language": "c",
  1099. "name": "chttp2_fake_security_request_with_compressed_payload_test",
  1100. "platforms": [
  1101. "linux",
  1102. "mac",
  1103. "posix",
  1104. "windows"
  1105. ]
  1106. },
  1107. {
  1108. "flaky": false,
  1109. "language": "c",
  1110. "name": "chttp2_fake_security_request_with_flags_test",
  1111. "platforms": [
  1112. "linux",
  1113. "mac",
  1114. "posix",
  1115. "windows"
  1116. ]
  1117. },
  1118. {
  1119. "flaky": false,
  1120. "language": "c",
  1121. "name": "chttp2_fake_security_request_with_large_metadata_test",
  1122. "platforms": [
  1123. "linux",
  1124. "mac",
  1125. "posix",
  1126. "windows"
  1127. ]
  1128. },
  1129. {
  1130. "flaky": false,
  1131. "language": "c",
  1132. "name": "chttp2_fake_security_request_with_payload_test",
  1133. "platforms": [
  1134. "linux",
  1135. "mac",
  1136. "posix",
  1137. "windows"
  1138. ]
  1139. },
  1140. {
  1141. "flaky": false,
  1142. "language": "c",
  1143. "name": "chttp2_fake_security_server_finishes_request_test",
  1144. "platforms": [
  1145. "linux",
  1146. "mac",
  1147. "posix",
  1148. "windows"
  1149. ]
  1150. },
  1151. {
  1152. "flaky": false,
  1153. "language": "c",
  1154. "name": "chttp2_fake_security_simple_delayed_request_test",
  1155. "platforms": [
  1156. "linux",
  1157. "mac",
  1158. "posix",
  1159. "windows"
  1160. ]
  1161. },
  1162. {
  1163. "flaky": false,
  1164. "language": "c",
  1165. "name": "chttp2_fake_security_simple_request_test",
  1166. "platforms": [
  1167. "linux",
  1168. "mac",
  1169. "posix",
  1170. "windows"
  1171. ]
  1172. },
  1173. {
  1174. "flaky": false,
  1175. "language": "c",
  1176. "name": "chttp2_fake_security_simple_request_with_high_initial_sequence_number_test",
  1177. "platforms": [
  1178. "linux",
  1179. "mac",
  1180. "posix",
  1181. "windows"
  1182. ]
  1183. },
  1184. {
  1185. "flaky": false,
  1186. "language": "c",
  1187. "name": "chttp2_fullstack_bad_hostname_test",
  1188. "platforms": [
  1189. "linux",
  1190. "mac",
  1191. "posix",
  1192. "windows"
  1193. ]
  1194. },
  1195. {
  1196. "flaky": false,
  1197. "language": "c",
  1198. "name": "chttp2_fullstack_cancel_after_accept_test",
  1199. "platforms": [
  1200. "linux",
  1201. "mac",
  1202. "posix",
  1203. "windows"
  1204. ]
  1205. },
  1206. {
  1207. "flaky": false,
  1208. "language": "c",
  1209. "name": "chttp2_fullstack_cancel_after_accept_and_writes_closed_test",
  1210. "platforms": [
  1211. "linux",
  1212. "mac",
  1213. "posix",
  1214. "windows"
  1215. ]
  1216. },
  1217. {
  1218. "flaky": false,
  1219. "language": "c",
  1220. "name": "chttp2_fullstack_cancel_after_invoke_test",
  1221. "platforms": [
  1222. "linux",
  1223. "mac",
  1224. "posix",
  1225. "windows"
  1226. ]
  1227. },
  1228. {
  1229. "flaky": false,
  1230. "language": "c",
  1231. "name": "chttp2_fullstack_cancel_before_invoke_test",
  1232. "platforms": [
  1233. "linux",
  1234. "mac",
  1235. "posix",
  1236. "windows"
  1237. ]
  1238. },
  1239. {
  1240. "flaky": false,
  1241. "language": "c",
  1242. "name": "chttp2_fullstack_cancel_in_a_vacuum_test",
  1243. "platforms": [
  1244. "linux",
  1245. "mac",
  1246. "posix",
  1247. "windows"
  1248. ]
  1249. },
  1250. {
  1251. "flaky": false,
  1252. "language": "c",
  1253. "name": "chttp2_fullstack_census_simple_request_test",
  1254. "platforms": [
  1255. "linux",
  1256. "mac",
  1257. "posix",
  1258. "windows"
  1259. ]
  1260. },
  1261. {
  1262. "flaky": false,
  1263. "language": "c",
  1264. "name": "chttp2_fullstack_channel_connectivity_test",
  1265. "platforms": [
  1266. "linux",
  1267. "mac",
  1268. "posix",
  1269. "windows"
  1270. ]
  1271. },
  1272. {
  1273. "flaky": false,
  1274. "language": "c",
  1275. "name": "chttp2_fullstack_default_host_test",
  1276. "platforms": [
  1277. "linux",
  1278. "mac",
  1279. "posix",
  1280. "windows"
  1281. ]
  1282. },
  1283. {
  1284. "flaky": false,
  1285. "language": "c",
  1286. "name": "chttp2_fullstack_disappearing_server_test",
  1287. "platforms": [
  1288. "linux",
  1289. "mac",
  1290. "posix",
  1291. "windows"
  1292. ]
  1293. },
  1294. {
  1295. "flaky": false,
  1296. "language": "c",
  1297. "name": "chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test",
  1298. "platforms": [
  1299. "linux",
  1300. "mac",
  1301. "posix",
  1302. "windows"
  1303. ]
  1304. },
  1305. {
  1306. "flaky": false,
  1307. "language": "c",
  1308. "name": "chttp2_fullstack_early_server_shutdown_finishes_tags_test",
  1309. "platforms": [
  1310. "linux",
  1311. "mac",
  1312. "posix",
  1313. "windows"
  1314. ]
  1315. },
  1316. {
  1317. "flaky": false,
  1318. "language": "c",
  1319. "name": "chttp2_fullstack_empty_batch_test",
  1320. "platforms": [
  1321. "linux",
  1322. "mac",
  1323. "posix",
  1324. "windows"
  1325. ]
  1326. },
  1327. {
  1328. "flaky": false,
  1329. "language": "c",
  1330. "name": "chttp2_fullstack_graceful_server_shutdown_test",
  1331. "platforms": [
  1332. "linux",
  1333. "mac",
  1334. "posix",
  1335. "windows"
  1336. ]
  1337. },
  1338. {
  1339. "flaky": false,
  1340. "language": "c",
  1341. "name": "chttp2_fullstack_invoke_large_request_test",
  1342. "platforms": [
  1343. "linux",
  1344. "mac",
  1345. "posix",
  1346. "windows"
  1347. ]
  1348. },
  1349. {
  1350. "flaky": false,
  1351. "language": "c",
  1352. "name": "chttp2_fullstack_max_concurrent_streams_test",
  1353. "platforms": [
  1354. "linux",
  1355. "mac",
  1356. "posix",
  1357. "windows"
  1358. ]
  1359. },
  1360. {
  1361. "flaky": false,
  1362. "language": "c",
  1363. "name": "chttp2_fullstack_max_message_length_test",
  1364. "platforms": [
  1365. "linux",
  1366. "mac",
  1367. "posix",
  1368. "windows"
  1369. ]
  1370. },
  1371. {
  1372. "flaky": false,
  1373. "language": "c",
  1374. "name": "chttp2_fullstack_no_op_test",
  1375. "platforms": [
  1376. "linux",
  1377. "mac",
  1378. "posix",
  1379. "windows"
  1380. ]
  1381. },
  1382. {
  1383. "flaky": false,
  1384. "language": "c",
  1385. "name": "chttp2_fullstack_ping_pong_streaming_test",
  1386. "platforms": [
  1387. "linux",
  1388. "mac",
  1389. "posix",
  1390. "windows"
  1391. ]
  1392. },
  1393. {
  1394. "flaky": false,
  1395. "language": "c",
  1396. "name": "chttp2_fullstack_registered_call_test",
  1397. "platforms": [
  1398. "linux",
  1399. "mac",
  1400. "posix",
  1401. "windows"
  1402. ]
  1403. },
  1404. {
  1405. "flaky": false,
  1406. "language": "c",
  1407. "name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_test",
  1408. "platforms": [
  1409. "linux",
  1410. "mac",
  1411. "posix",
  1412. "windows"
  1413. ]
  1414. },
  1415. {
  1416. "flaky": false,
  1417. "language": "c",
  1418. "name": "chttp2_fullstack_request_response_with_metadata_and_payload_test",
  1419. "platforms": [
  1420. "linux",
  1421. "mac",
  1422. "posix",
  1423. "windows"
  1424. ]
  1425. },
  1426. {
  1427. "flaky": false,
  1428. "language": "c",
  1429. "name": "chttp2_fullstack_request_response_with_payload_test",
  1430. "platforms": [
  1431. "linux",
  1432. "mac",
  1433. "posix",
  1434. "windows"
  1435. ]
  1436. },
  1437. {
  1438. "flaky": false,
  1439. "language": "c",
  1440. "name": "chttp2_fullstack_request_response_with_payload_and_call_creds_test",
  1441. "platforms": [
  1442. "linux",
  1443. "mac",
  1444. "posix",
  1445. "windows"
  1446. ]
  1447. },
  1448. {
  1449. "flaky": false,
  1450. "language": "c",
  1451. "name": "chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test",
  1452. "platforms": [
  1453. "linux",
  1454. "mac",
  1455. "posix",
  1456. "windows"
  1457. ]
  1458. },
  1459. {
  1460. "flaky": false,
  1461. "language": "c",
  1462. "name": "chttp2_fullstack_request_with_compressed_payload_test",
  1463. "platforms": [
  1464. "linux",
  1465. "mac",
  1466. "posix",
  1467. "windows"
  1468. ]
  1469. },
  1470. {
  1471. "flaky": false,
  1472. "language": "c",
  1473. "name": "chttp2_fullstack_request_with_flags_test",
  1474. "platforms": [
  1475. "linux",
  1476. "mac",
  1477. "posix",
  1478. "windows"
  1479. ]
  1480. },
  1481. {
  1482. "flaky": false,
  1483. "language": "c",
  1484. "name": "chttp2_fullstack_request_with_large_metadata_test",
  1485. "platforms": [
  1486. "linux",
  1487. "mac",
  1488. "posix",
  1489. "windows"
  1490. ]
  1491. },
  1492. {
  1493. "flaky": false,
  1494. "language": "c",
  1495. "name": "chttp2_fullstack_request_with_payload_test",
  1496. "platforms": [
  1497. "linux",
  1498. "mac",
  1499. "posix",
  1500. "windows"
  1501. ]
  1502. },
  1503. {
  1504. "flaky": false,
  1505. "language": "c",
  1506. "name": "chttp2_fullstack_server_finishes_request_test",
  1507. "platforms": [
  1508. "linux",
  1509. "mac",
  1510. "posix",
  1511. "windows"
  1512. ]
  1513. },
  1514. {
  1515. "flaky": false,
  1516. "language": "c",
  1517. "name": "chttp2_fullstack_simple_delayed_request_test",
  1518. "platforms": [
  1519. "linux",
  1520. "mac",
  1521. "posix",
  1522. "windows"
  1523. ]
  1524. },
  1525. {
  1526. "flaky": false,
  1527. "language": "c",
  1528. "name": "chttp2_fullstack_simple_request_test",
  1529. "platforms": [
  1530. "linux",
  1531. "mac",
  1532. "posix",
  1533. "windows"
  1534. ]
  1535. },
  1536. {
  1537. "flaky": false,
  1538. "language": "c",
  1539. "name": "chttp2_fullstack_simple_request_with_high_initial_sequence_number_test",
  1540. "platforms": [
  1541. "linux",
  1542. "mac",
  1543. "posix",
  1544. "windows"
  1545. ]
  1546. },
  1547. {
  1548. "flaky": false,
  1549. "language": "c",
  1550. "name": "chttp2_fullstack_compression_bad_hostname_test",
  1551. "platforms": [
  1552. "linux",
  1553. "mac",
  1554. "posix",
  1555. "windows"
  1556. ]
  1557. },
  1558. {
  1559. "flaky": false,
  1560. "language": "c",
  1561. "name": "chttp2_fullstack_compression_cancel_after_accept_test",
  1562. "platforms": [
  1563. "linux",
  1564. "mac",
  1565. "posix",
  1566. "windows"
  1567. ]
  1568. },
  1569. {
  1570. "flaky": false,
  1571. "language": "c",
  1572. "name": "chttp2_fullstack_compression_cancel_after_accept_and_writes_closed_test",
  1573. "platforms": [
  1574. "linux",
  1575. "mac",
  1576. "posix",
  1577. "windows"
  1578. ]
  1579. },
  1580. {
  1581. "flaky": false,
  1582. "language": "c",
  1583. "name": "chttp2_fullstack_compression_cancel_after_invoke_test",
  1584. "platforms": [
  1585. "linux",
  1586. "mac",
  1587. "posix",
  1588. "windows"
  1589. ]
  1590. },
  1591. {
  1592. "flaky": false,
  1593. "language": "c",
  1594. "name": "chttp2_fullstack_compression_cancel_before_invoke_test",
  1595. "platforms": [
  1596. "linux",
  1597. "mac",
  1598. "posix",
  1599. "windows"
  1600. ]
  1601. },
  1602. {
  1603. "flaky": false,
  1604. "language": "c",
  1605. "name": "chttp2_fullstack_compression_cancel_in_a_vacuum_test",
  1606. "platforms": [
  1607. "linux",
  1608. "mac",
  1609. "posix",
  1610. "windows"
  1611. ]
  1612. },
  1613. {
  1614. "flaky": false,
  1615. "language": "c",
  1616. "name": "chttp2_fullstack_compression_census_simple_request_test",
  1617. "platforms": [
  1618. "linux",
  1619. "mac",
  1620. "posix",
  1621. "windows"
  1622. ]
  1623. },
  1624. {
  1625. "flaky": false,
  1626. "language": "c",
  1627. "name": "chttp2_fullstack_compression_channel_connectivity_test",
  1628. "platforms": [
  1629. "linux",
  1630. "mac",
  1631. "posix",
  1632. "windows"
  1633. ]
  1634. },
  1635. {
  1636. "flaky": false,
  1637. "language": "c",
  1638. "name": "chttp2_fullstack_compression_default_host_test",
  1639. "platforms": [
  1640. "linux",
  1641. "mac",
  1642. "posix",
  1643. "windows"
  1644. ]
  1645. },
  1646. {
  1647. "flaky": false,
  1648. "language": "c",
  1649. "name": "chttp2_fullstack_compression_disappearing_server_test",
  1650. "platforms": [
  1651. "linux",
  1652. "mac",
  1653. "posix",
  1654. "windows"
  1655. ]
  1656. },
  1657. {
  1658. "flaky": false,
  1659. "language": "c",
  1660. "name": "chttp2_fullstack_compression_early_server_shutdown_finishes_inflight_calls_test",
  1661. "platforms": [
  1662. "linux",
  1663. "mac",
  1664. "posix",
  1665. "windows"
  1666. ]
  1667. },
  1668. {
  1669. "flaky": false,
  1670. "language": "c",
  1671. "name": "chttp2_fullstack_compression_early_server_shutdown_finishes_tags_test",
  1672. "platforms": [
  1673. "linux",
  1674. "mac",
  1675. "posix",
  1676. "windows"
  1677. ]
  1678. },
  1679. {
  1680. "flaky": false,
  1681. "language": "c",
  1682. "name": "chttp2_fullstack_compression_empty_batch_test",
  1683. "platforms": [
  1684. "linux",
  1685. "mac",
  1686. "posix",
  1687. "windows"
  1688. ]
  1689. },
  1690. {
  1691. "flaky": false,
  1692. "language": "c",
  1693. "name": "chttp2_fullstack_compression_graceful_server_shutdown_test",
  1694. "platforms": [
  1695. "linux",
  1696. "mac",
  1697. "posix",
  1698. "windows"
  1699. ]
  1700. },
  1701. {
  1702. "flaky": false,
  1703. "language": "c",
  1704. "name": "chttp2_fullstack_compression_invoke_large_request_test",
  1705. "platforms": [
  1706. "linux",
  1707. "mac",
  1708. "posix",
  1709. "windows"
  1710. ]
  1711. },
  1712. {
  1713. "flaky": false,
  1714. "language": "c",
  1715. "name": "chttp2_fullstack_compression_max_concurrent_streams_test",
  1716. "platforms": [
  1717. "linux",
  1718. "mac",
  1719. "posix",
  1720. "windows"
  1721. ]
  1722. },
  1723. {
  1724. "flaky": false,
  1725. "language": "c",
  1726. "name": "chttp2_fullstack_compression_max_message_length_test",
  1727. "platforms": [
  1728. "linux",
  1729. "mac",
  1730. "posix",
  1731. "windows"
  1732. ]
  1733. },
  1734. {
  1735. "flaky": false,
  1736. "language": "c",
  1737. "name": "chttp2_fullstack_compression_no_op_test",
  1738. "platforms": [
  1739. "linux",
  1740. "mac",
  1741. "posix",
  1742. "windows"
  1743. ]
  1744. },
  1745. {
  1746. "flaky": false,
  1747. "language": "c",
  1748. "name": "chttp2_fullstack_compression_ping_pong_streaming_test",
  1749. "platforms": [
  1750. "linux",
  1751. "mac",
  1752. "posix",
  1753. "windows"
  1754. ]
  1755. },
  1756. {
  1757. "flaky": false,
  1758. "language": "c",
  1759. "name": "chttp2_fullstack_compression_registered_call_test",
  1760. "platforms": [
  1761. "linux",
  1762. "mac",
  1763. "posix",
  1764. "windows"
  1765. ]
  1766. },
  1767. {
  1768. "flaky": false,
  1769. "language": "c",
  1770. "name": "chttp2_fullstack_compression_request_response_with_binary_metadata_and_payload_test",
  1771. "platforms": [
  1772. "linux",
  1773. "mac",
  1774. "posix",
  1775. "windows"
  1776. ]
  1777. },
  1778. {
  1779. "flaky": false,
  1780. "language": "c",
  1781. "name": "chttp2_fullstack_compression_request_response_with_metadata_and_payload_test",
  1782. "platforms": [
  1783. "linux",
  1784. "mac",
  1785. "posix",
  1786. "windows"
  1787. ]
  1788. },
  1789. {
  1790. "flaky": false,
  1791. "language": "c",
  1792. "name": "chttp2_fullstack_compression_request_response_with_payload_test",
  1793. "platforms": [
  1794. "linux",
  1795. "mac",
  1796. "posix",
  1797. "windows"
  1798. ]
  1799. },
  1800. {
  1801. "flaky": false,
  1802. "language": "c",
  1803. "name": "chttp2_fullstack_compression_request_response_with_payload_and_call_creds_test",
  1804. "platforms": [
  1805. "linux",
  1806. "mac",
  1807. "posix",
  1808. "windows"
  1809. ]
  1810. },
  1811. {
  1812. "flaky": false,
  1813. "language": "c",
  1814. "name": "chttp2_fullstack_compression_request_response_with_trailing_metadata_and_payload_test",
  1815. "platforms": [
  1816. "linux",
  1817. "mac",
  1818. "posix",
  1819. "windows"
  1820. ]
  1821. },
  1822. {
  1823. "flaky": false,
  1824. "language": "c",
  1825. "name": "chttp2_fullstack_compression_request_with_compressed_payload_test",
  1826. "platforms": [
  1827. "linux",
  1828. "mac",
  1829. "posix",
  1830. "windows"
  1831. ]
  1832. },
  1833. {
  1834. "flaky": false,
  1835. "language": "c",
  1836. "name": "chttp2_fullstack_compression_request_with_flags_test",
  1837. "platforms": [
  1838. "linux",
  1839. "mac",
  1840. "posix",
  1841. "windows"
  1842. ]
  1843. },
  1844. {
  1845. "flaky": false,
  1846. "language": "c",
  1847. "name": "chttp2_fullstack_compression_request_with_large_metadata_test",
  1848. "platforms": [
  1849. "linux",
  1850. "mac",
  1851. "posix",
  1852. "windows"
  1853. ]
  1854. },
  1855. {
  1856. "flaky": false,
  1857. "language": "c",
  1858. "name": "chttp2_fullstack_compression_request_with_payload_test",
  1859. "platforms": [
  1860. "linux",
  1861. "mac",
  1862. "posix",
  1863. "windows"
  1864. ]
  1865. },
  1866. {
  1867. "flaky": false,
  1868. "language": "c",
  1869. "name": "chttp2_fullstack_compression_server_finishes_request_test",
  1870. "platforms": [
  1871. "linux",
  1872. "mac",
  1873. "posix",
  1874. "windows"
  1875. ]
  1876. },
  1877. {
  1878. "flaky": false,
  1879. "language": "c",
  1880. "name": "chttp2_fullstack_compression_simple_delayed_request_test",
  1881. "platforms": [
  1882. "linux",
  1883. "mac",
  1884. "posix",
  1885. "windows"
  1886. ]
  1887. },
  1888. {
  1889. "flaky": false,
  1890. "language": "c",
  1891. "name": "chttp2_fullstack_compression_simple_request_test",
  1892. "platforms": [
  1893. "linux",
  1894. "mac",
  1895. "posix",
  1896. "windows"
  1897. ]
  1898. },
  1899. {
  1900. "flaky": false,
  1901. "language": "c",
  1902. "name": "chttp2_fullstack_compression_simple_request_with_high_initial_sequence_number_test",
  1903. "platforms": [
  1904. "linux",
  1905. "mac",
  1906. "posix",
  1907. "windows"
  1908. ]
  1909. },
  1910. {
  1911. "flaky": false,
  1912. "language": "c",
  1913. "name": "chttp2_fullstack_uds_posix_bad_hostname_test",
  1914. "platforms": [
  1915. "linux",
  1916. "mac",
  1917. "posix"
  1918. ]
  1919. },
  1920. {
  1921. "flaky": false,
  1922. "language": "c",
  1923. "name": "chttp2_fullstack_uds_posix_cancel_after_accept_test",
  1924. "platforms": [
  1925. "linux",
  1926. "mac",
  1927. "posix"
  1928. ]
  1929. },
  1930. {
  1931. "flaky": false,
  1932. "language": "c",
  1933. "name": "chttp2_fullstack_uds_posix_cancel_after_accept_and_writes_closed_test",
  1934. "platforms": [
  1935. "linux",
  1936. "mac",
  1937. "posix"
  1938. ]
  1939. },
  1940. {
  1941. "flaky": false,
  1942. "language": "c",
  1943. "name": "chttp2_fullstack_uds_posix_cancel_after_invoke_test",
  1944. "platforms": [
  1945. "linux",
  1946. "mac",
  1947. "posix"
  1948. ]
  1949. },
  1950. {
  1951. "flaky": false,
  1952. "language": "c",
  1953. "name": "chttp2_fullstack_uds_posix_cancel_before_invoke_test",
  1954. "platforms": [
  1955. "linux",
  1956. "mac",
  1957. "posix"
  1958. ]
  1959. },
  1960. {
  1961. "flaky": false,
  1962. "language": "c",
  1963. "name": "chttp2_fullstack_uds_posix_cancel_in_a_vacuum_test",
  1964. "platforms": [
  1965. "linux",
  1966. "mac",
  1967. "posix"
  1968. ]
  1969. },
  1970. {
  1971. "flaky": false,
  1972. "language": "c",
  1973. "name": "chttp2_fullstack_uds_posix_census_simple_request_test",
  1974. "platforms": [
  1975. "linux",
  1976. "mac",
  1977. "posix"
  1978. ]
  1979. },
  1980. {
  1981. "flaky": false,
  1982. "language": "c",
  1983. "name": "chttp2_fullstack_uds_posix_channel_connectivity_test",
  1984. "platforms": [
  1985. "linux",
  1986. "mac",
  1987. "posix"
  1988. ]
  1989. },
  1990. {
  1991. "flaky": false,
  1992. "language": "c",
  1993. "name": "chttp2_fullstack_uds_posix_disappearing_server_test",
  1994. "platforms": [
  1995. "linux",
  1996. "mac",
  1997. "posix"
  1998. ]
  1999. },
  2000. {
  2001. "flaky": false,
  2002. "language": "c",
  2003. "name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_inflight_calls_test",
  2004. "platforms": [
  2005. "linux",
  2006. "mac",
  2007. "posix"
  2008. ]
  2009. },
  2010. {
  2011. "flaky": false,
  2012. "language": "c",
  2013. "name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_tags_test",
  2014. "platforms": [
  2015. "linux",
  2016. "mac",
  2017. "posix"
  2018. ]
  2019. },
  2020. {
  2021. "flaky": false,
  2022. "language": "c",
  2023. "name": "chttp2_fullstack_uds_posix_empty_batch_test",
  2024. "platforms": [
  2025. "linux",
  2026. "mac",
  2027. "posix"
  2028. ]
  2029. },
  2030. {
  2031. "flaky": false,
  2032. "language": "c",
  2033. "name": "chttp2_fullstack_uds_posix_graceful_server_shutdown_test",
  2034. "platforms": [
  2035. "linux",
  2036. "mac",
  2037. "posix"
  2038. ]
  2039. },
  2040. {
  2041. "flaky": false,
  2042. "language": "c",
  2043. "name": "chttp2_fullstack_uds_posix_invoke_large_request_test",
  2044. "platforms": [
  2045. "linux",
  2046. "mac",
  2047. "posix"
  2048. ]
  2049. },
  2050. {
  2051. "flaky": false,
  2052. "language": "c",
  2053. "name": "chttp2_fullstack_uds_posix_max_concurrent_streams_test",
  2054. "platforms": [
  2055. "linux",
  2056. "mac",
  2057. "posix"
  2058. ]
  2059. },
  2060. {
  2061. "flaky": false,
  2062. "language": "c",
  2063. "name": "chttp2_fullstack_uds_posix_max_message_length_test",
  2064. "platforms": [
  2065. "linux",
  2066. "mac",
  2067. "posix"
  2068. ]
  2069. },
  2070. {
  2071. "flaky": false,
  2072. "language": "c",
  2073. "name": "chttp2_fullstack_uds_posix_no_op_test",
  2074. "platforms": [
  2075. "linux",
  2076. "mac",
  2077. "posix"
  2078. ]
  2079. },
  2080. {
  2081. "flaky": false,
  2082. "language": "c",
  2083. "name": "chttp2_fullstack_uds_posix_ping_pong_streaming_test",
  2084. "platforms": [
  2085. "linux",
  2086. "mac",
  2087. "posix"
  2088. ]
  2089. },
  2090. {
  2091. "flaky": false,
  2092. "language": "c",
  2093. "name": "chttp2_fullstack_uds_posix_registered_call_test",
  2094. "platforms": [
  2095. "linux",
  2096. "mac",
  2097. "posix"
  2098. ]
  2099. },
  2100. {
  2101. "flaky": false,
  2102. "language": "c",
  2103. "name": "chttp2_fullstack_uds_posix_request_response_with_binary_metadata_and_payload_test",
  2104. "platforms": [
  2105. "linux",
  2106. "mac",
  2107. "posix"
  2108. ]
  2109. },
  2110. {
  2111. "flaky": false,
  2112. "language": "c",
  2113. "name": "chttp2_fullstack_uds_posix_request_response_with_metadata_and_payload_test",
  2114. "platforms": [
  2115. "linux",
  2116. "mac",
  2117. "posix"
  2118. ]
  2119. },
  2120. {
  2121. "flaky": false,
  2122. "language": "c",
  2123. "name": "chttp2_fullstack_uds_posix_request_response_with_payload_test",
  2124. "platforms": [
  2125. "linux",
  2126. "mac",
  2127. "posix"
  2128. ]
  2129. },
  2130. {
  2131. "flaky": false,
  2132. "language": "c",
  2133. "name": "chttp2_fullstack_uds_posix_request_response_with_payload_and_call_creds_test",
  2134. "platforms": [
  2135. "linux",
  2136. "mac",
  2137. "posix"
  2138. ]
  2139. },
  2140. {
  2141. "flaky": false,
  2142. "language": "c",
  2143. "name": "chttp2_fullstack_uds_posix_request_response_with_trailing_metadata_and_payload_test",
  2144. "platforms": [
  2145. "linux",
  2146. "mac",
  2147. "posix"
  2148. ]
  2149. },
  2150. {
  2151. "flaky": false,
  2152. "language": "c",
  2153. "name": "chttp2_fullstack_uds_posix_request_with_compressed_payload_test",
  2154. "platforms": [
  2155. "linux",
  2156. "mac",
  2157. "posix"
  2158. ]
  2159. },
  2160. {
  2161. "flaky": false,
  2162. "language": "c",
  2163. "name": "chttp2_fullstack_uds_posix_request_with_flags_test",
  2164. "platforms": [
  2165. "linux",
  2166. "mac",
  2167. "posix"
  2168. ]
  2169. },
  2170. {
  2171. "flaky": false,
  2172. "language": "c",
  2173. "name": "chttp2_fullstack_uds_posix_request_with_large_metadata_test",
  2174. "platforms": [
  2175. "linux",
  2176. "mac",
  2177. "posix"
  2178. ]
  2179. },
  2180. {
  2181. "flaky": false,
  2182. "language": "c",
  2183. "name": "chttp2_fullstack_uds_posix_request_with_payload_test",
  2184. "platforms": [
  2185. "linux",
  2186. "mac",
  2187. "posix"
  2188. ]
  2189. },
  2190. {
  2191. "flaky": false,
  2192. "language": "c",
  2193. "name": "chttp2_fullstack_uds_posix_server_finishes_request_test",
  2194. "platforms": [
  2195. "linux",
  2196. "mac",
  2197. "posix"
  2198. ]
  2199. },
  2200. {
  2201. "flaky": false,
  2202. "language": "c",
  2203. "name": "chttp2_fullstack_uds_posix_simple_delayed_request_test",
  2204. "platforms": [
  2205. "linux",
  2206. "mac",
  2207. "posix"
  2208. ]
  2209. },
  2210. {
  2211. "flaky": false,
  2212. "language": "c",
  2213. "name": "chttp2_fullstack_uds_posix_simple_request_test",
  2214. "platforms": [
  2215. "linux",
  2216. "mac",
  2217. "posix"
  2218. ]
  2219. },
  2220. {
  2221. "flaky": false,
  2222. "language": "c",
  2223. "name": "chttp2_fullstack_uds_posix_simple_request_with_high_initial_sequence_number_test",
  2224. "platforms": [
  2225. "linux",
  2226. "mac",
  2227. "posix"
  2228. ]
  2229. },
  2230. {
  2231. "flaky": false,
  2232. "language": "c",
  2233. "name": "chttp2_fullstack_uds_posix_with_poll_bad_hostname_test",
  2234. "platforms": [
  2235. "linux"
  2236. ]
  2237. },
  2238. {
  2239. "flaky": false,
  2240. "language": "c",
  2241. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_test",
  2242. "platforms": [
  2243. "linux"
  2244. ]
  2245. },
  2246. {
  2247. "flaky": false,
  2248. "language": "c",
  2249. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_and_writes_closed_test",
  2250. "platforms": [
  2251. "linux"
  2252. ]
  2253. },
  2254. {
  2255. "flaky": false,
  2256. "language": "c",
  2257. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_invoke_test",
  2258. "platforms": [
  2259. "linux"
  2260. ]
  2261. },
  2262. {
  2263. "flaky": false,
  2264. "language": "c",
  2265. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_before_invoke_test",
  2266. "platforms": [
  2267. "linux"
  2268. ]
  2269. },
  2270. {
  2271. "flaky": false,
  2272. "language": "c",
  2273. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_in_a_vacuum_test",
  2274. "platforms": [
  2275. "linux"
  2276. ]
  2277. },
  2278. {
  2279. "flaky": false,
  2280. "language": "c",
  2281. "name": "chttp2_fullstack_uds_posix_with_poll_census_simple_request_test",
  2282. "platforms": [
  2283. "linux"
  2284. ]
  2285. },
  2286. {
  2287. "flaky": false,
  2288. "language": "c",
  2289. "name": "chttp2_fullstack_uds_posix_with_poll_channel_connectivity_test",
  2290. "platforms": [
  2291. "linux"
  2292. ]
  2293. },
  2294. {
  2295. "flaky": false,
  2296. "language": "c",
  2297. "name": "chttp2_fullstack_uds_posix_with_poll_disappearing_server_test",
  2298. "platforms": [
  2299. "linux"
  2300. ]
  2301. },
  2302. {
  2303. "flaky": false,
  2304. "language": "c",
  2305. "name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_inflight_calls_test",
  2306. "platforms": [
  2307. "linux"
  2308. ]
  2309. },
  2310. {
  2311. "flaky": false,
  2312. "language": "c",
  2313. "name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_tags_test",
  2314. "platforms": [
  2315. "linux"
  2316. ]
  2317. },
  2318. {
  2319. "flaky": false,
  2320. "language": "c",
  2321. "name": "chttp2_fullstack_uds_posix_with_poll_empty_batch_test",
  2322. "platforms": [
  2323. "linux"
  2324. ]
  2325. },
  2326. {
  2327. "flaky": false,
  2328. "language": "c",
  2329. "name": "chttp2_fullstack_uds_posix_with_poll_graceful_server_shutdown_test",
  2330. "platforms": [
  2331. "linux"
  2332. ]
  2333. },
  2334. {
  2335. "flaky": false,
  2336. "language": "c",
  2337. "name": "chttp2_fullstack_uds_posix_with_poll_invoke_large_request_test",
  2338. "platforms": [
  2339. "linux"
  2340. ]
  2341. },
  2342. {
  2343. "flaky": false,
  2344. "language": "c",
  2345. "name": "chttp2_fullstack_uds_posix_with_poll_max_concurrent_streams_test",
  2346. "platforms": [
  2347. "linux"
  2348. ]
  2349. },
  2350. {
  2351. "flaky": false,
  2352. "language": "c",
  2353. "name": "chttp2_fullstack_uds_posix_with_poll_max_message_length_test",
  2354. "platforms": [
  2355. "linux"
  2356. ]
  2357. },
  2358. {
  2359. "flaky": false,
  2360. "language": "c",
  2361. "name": "chttp2_fullstack_uds_posix_with_poll_no_op_test",
  2362. "platforms": [
  2363. "linux"
  2364. ]
  2365. },
  2366. {
  2367. "flaky": false,
  2368. "language": "c",
  2369. "name": "chttp2_fullstack_uds_posix_with_poll_ping_pong_streaming_test",
  2370. "platforms": [
  2371. "linux"
  2372. ]
  2373. },
  2374. {
  2375. "flaky": false,
  2376. "language": "c",
  2377. "name": "chttp2_fullstack_uds_posix_with_poll_registered_call_test",
  2378. "platforms": [
  2379. "linux"
  2380. ]
  2381. },
  2382. {
  2383. "flaky": false,
  2384. "language": "c",
  2385. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_binary_metadata_and_payload_test",
  2386. "platforms": [
  2387. "linux"
  2388. ]
  2389. },
  2390. {
  2391. "flaky": false,
  2392. "language": "c",
  2393. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_metadata_and_payload_test",
  2394. "platforms": [
  2395. "linux"
  2396. ]
  2397. },
  2398. {
  2399. "flaky": false,
  2400. "language": "c",
  2401. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_test",
  2402. "platforms": [
  2403. "linux"
  2404. ]
  2405. },
  2406. {
  2407. "flaky": false,
  2408. "language": "c",
  2409. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_and_call_creds_test",
  2410. "platforms": [
  2411. "linux"
  2412. ]
  2413. },
  2414. {
  2415. "flaky": false,
  2416. "language": "c",
  2417. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_trailing_metadata_and_payload_test",
  2418. "platforms": [
  2419. "linux"
  2420. ]
  2421. },
  2422. {
  2423. "flaky": false,
  2424. "language": "c",
  2425. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_compressed_payload_test",
  2426. "platforms": [
  2427. "linux"
  2428. ]
  2429. },
  2430. {
  2431. "flaky": false,
  2432. "language": "c",
  2433. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_flags_test",
  2434. "platforms": [
  2435. "linux"
  2436. ]
  2437. },
  2438. {
  2439. "flaky": false,
  2440. "language": "c",
  2441. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_large_metadata_test",
  2442. "platforms": [
  2443. "linux"
  2444. ]
  2445. },
  2446. {
  2447. "flaky": false,
  2448. "language": "c",
  2449. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_payload_test",
  2450. "platforms": [
  2451. "linux"
  2452. ]
  2453. },
  2454. {
  2455. "flaky": false,
  2456. "language": "c",
  2457. "name": "chttp2_fullstack_uds_posix_with_poll_server_finishes_request_test",
  2458. "platforms": [
  2459. "linux"
  2460. ]
  2461. },
  2462. {
  2463. "flaky": false,
  2464. "language": "c",
  2465. "name": "chttp2_fullstack_uds_posix_with_poll_simple_delayed_request_test",
  2466. "platforms": [
  2467. "linux"
  2468. ]
  2469. },
  2470. {
  2471. "flaky": false,
  2472. "language": "c",
  2473. "name": "chttp2_fullstack_uds_posix_with_poll_simple_request_test",
  2474. "platforms": [
  2475. "linux"
  2476. ]
  2477. },
  2478. {
  2479. "flaky": false,
  2480. "language": "c",
  2481. "name": "chttp2_fullstack_uds_posix_with_poll_simple_request_with_high_initial_sequence_number_test",
  2482. "platforms": [
  2483. "linux"
  2484. ]
  2485. },
  2486. {
  2487. "flaky": false,
  2488. "language": "c",
  2489. "name": "chttp2_fullstack_with_poll_bad_hostname_test",
  2490. "platforms": [
  2491. "linux"
  2492. ]
  2493. },
  2494. {
  2495. "flaky": false,
  2496. "language": "c",
  2497. "name": "chttp2_fullstack_with_poll_cancel_after_accept_test",
  2498. "platforms": [
  2499. "linux"
  2500. ]
  2501. },
  2502. {
  2503. "flaky": false,
  2504. "language": "c",
  2505. "name": "chttp2_fullstack_with_poll_cancel_after_accept_and_writes_closed_test",
  2506. "platforms": [
  2507. "linux"
  2508. ]
  2509. },
  2510. {
  2511. "flaky": false,
  2512. "language": "c",
  2513. "name": "chttp2_fullstack_with_poll_cancel_after_invoke_test",
  2514. "platforms": [
  2515. "linux"
  2516. ]
  2517. },
  2518. {
  2519. "flaky": false,
  2520. "language": "c",
  2521. "name": "chttp2_fullstack_with_poll_cancel_before_invoke_test",
  2522. "platforms": [
  2523. "linux"
  2524. ]
  2525. },
  2526. {
  2527. "flaky": false,
  2528. "language": "c",
  2529. "name": "chttp2_fullstack_with_poll_cancel_in_a_vacuum_test",
  2530. "platforms": [
  2531. "linux"
  2532. ]
  2533. },
  2534. {
  2535. "flaky": false,
  2536. "language": "c",
  2537. "name": "chttp2_fullstack_with_poll_census_simple_request_test",
  2538. "platforms": [
  2539. "linux"
  2540. ]
  2541. },
  2542. {
  2543. "flaky": false,
  2544. "language": "c",
  2545. "name": "chttp2_fullstack_with_poll_channel_connectivity_test",
  2546. "platforms": [
  2547. "linux"
  2548. ]
  2549. },
  2550. {
  2551. "flaky": false,
  2552. "language": "c",
  2553. "name": "chttp2_fullstack_with_poll_default_host_test",
  2554. "platforms": [
  2555. "linux"
  2556. ]
  2557. },
  2558. {
  2559. "flaky": false,
  2560. "language": "c",
  2561. "name": "chttp2_fullstack_with_poll_disappearing_server_test",
  2562. "platforms": [
  2563. "linux"
  2564. ]
  2565. },
  2566. {
  2567. "flaky": false,
  2568. "language": "c",
  2569. "name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_test",
  2570. "platforms": [
  2571. "linux"
  2572. ]
  2573. },
  2574. {
  2575. "flaky": false,
  2576. "language": "c",
  2577. "name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_tags_test",
  2578. "platforms": [
  2579. "linux"
  2580. ]
  2581. },
  2582. {
  2583. "flaky": false,
  2584. "language": "c",
  2585. "name": "chttp2_fullstack_with_poll_empty_batch_test",
  2586. "platforms": [
  2587. "linux"
  2588. ]
  2589. },
  2590. {
  2591. "flaky": false,
  2592. "language": "c",
  2593. "name": "chttp2_fullstack_with_poll_graceful_server_shutdown_test",
  2594. "platforms": [
  2595. "linux"
  2596. ]
  2597. },
  2598. {
  2599. "flaky": false,
  2600. "language": "c",
  2601. "name": "chttp2_fullstack_with_poll_invoke_large_request_test",
  2602. "platforms": [
  2603. "linux"
  2604. ]
  2605. },
  2606. {
  2607. "flaky": false,
  2608. "language": "c",
  2609. "name": "chttp2_fullstack_with_poll_max_concurrent_streams_test",
  2610. "platforms": [
  2611. "linux"
  2612. ]
  2613. },
  2614. {
  2615. "flaky": false,
  2616. "language": "c",
  2617. "name": "chttp2_fullstack_with_poll_max_message_length_test",
  2618. "platforms": [
  2619. "linux"
  2620. ]
  2621. },
  2622. {
  2623. "flaky": false,
  2624. "language": "c",
  2625. "name": "chttp2_fullstack_with_poll_no_op_test",
  2626. "platforms": [
  2627. "linux"
  2628. ]
  2629. },
  2630. {
  2631. "flaky": false,
  2632. "language": "c",
  2633. "name": "chttp2_fullstack_with_poll_ping_pong_streaming_test",
  2634. "platforms": [
  2635. "linux"
  2636. ]
  2637. },
  2638. {
  2639. "flaky": false,
  2640. "language": "c",
  2641. "name": "chttp2_fullstack_with_poll_registered_call_test",
  2642. "platforms": [
  2643. "linux"
  2644. ]
  2645. },
  2646. {
  2647. "flaky": false,
  2648. "language": "c",
  2649. "name": "chttp2_fullstack_with_poll_request_response_with_binary_metadata_and_payload_test",
  2650. "platforms": [
  2651. "linux"
  2652. ]
  2653. },
  2654. {
  2655. "flaky": false,
  2656. "language": "c",
  2657. "name": "chttp2_fullstack_with_poll_request_response_with_metadata_and_payload_test",
  2658. "platforms": [
  2659. "linux"
  2660. ]
  2661. },
  2662. {
  2663. "flaky": false,
  2664. "language": "c",
  2665. "name": "chttp2_fullstack_with_poll_request_response_with_payload_test",
  2666. "platforms": [
  2667. "linux"
  2668. ]
  2669. },
  2670. {
  2671. "flaky": false,
  2672. "language": "c",
  2673. "name": "chttp2_fullstack_with_poll_request_response_with_payload_and_call_creds_test",
  2674. "platforms": [
  2675. "linux"
  2676. ]
  2677. },
  2678. {
  2679. "flaky": false,
  2680. "language": "c",
  2681. "name": "chttp2_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_test",
  2682. "platforms": [
  2683. "linux"
  2684. ]
  2685. },
  2686. {
  2687. "flaky": false,
  2688. "language": "c",
  2689. "name": "chttp2_fullstack_with_poll_request_with_compressed_payload_test",
  2690. "platforms": [
  2691. "linux"
  2692. ]
  2693. },
  2694. {
  2695. "flaky": false,
  2696. "language": "c",
  2697. "name": "chttp2_fullstack_with_poll_request_with_flags_test",
  2698. "platforms": [
  2699. "linux"
  2700. ]
  2701. },
  2702. {
  2703. "flaky": false,
  2704. "language": "c",
  2705. "name": "chttp2_fullstack_with_poll_request_with_large_metadata_test",
  2706. "platforms": [
  2707. "linux"
  2708. ]
  2709. },
  2710. {
  2711. "flaky": false,
  2712. "language": "c",
  2713. "name": "chttp2_fullstack_with_poll_request_with_payload_test",
  2714. "platforms": [
  2715. "linux"
  2716. ]
  2717. },
  2718. {
  2719. "flaky": false,
  2720. "language": "c",
  2721. "name": "chttp2_fullstack_with_poll_server_finishes_request_test",
  2722. "platforms": [
  2723. "linux"
  2724. ]
  2725. },
  2726. {
  2727. "flaky": false,
  2728. "language": "c",
  2729. "name": "chttp2_fullstack_with_poll_simple_delayed_request_test",
  2730. "platforms": [
  2731. "linux"
  2732. ]
  2733. },
  2734. {
  2735. "flaky": false,
  2736. "language": "c",
  2737. "name": "chttp2_fullstack_with_poll_simple_request_test",
  2738. "platforms": [
  2739. "linux"
  2740. ]
  2741. },
  2742. {
  2743. "flaky": false,
  2744. "language": "c",
  2745. "name": "chttp2_fullstack_with_poll_simple_request_with_high_initial_sequence_number_test",
  2746. "platforms": [
  2747. "linux"
  2748. ]
  2749. },
  2750. {
  2751. "flaky": false,
  2752. "language": "c",
  2753. "name": "chttp2_fullstack_with_proxy_bad_hostname_test",
  2754. "platforms": [
  2755. "linux",
  2756. "mac",
  2757. "posix",
  2758. "windows"
  2759. ]
  2760. },
  2761. {
  2762. "flaky": false,
  2763. "language": "c",
  2764. "name": "chttp2_fullstack_with_proxy_cancel_after_accept_test",
  2765. "platforms": [
  2766. "linux",
  2767. "mac",
  2768. "posix",
  2769. "windows"
  2770. ]
  2771. },
  2772. {
  2773. "flaky": false,
  2774. "language": "c",
  2775. "name": "chttp2_fullstack_with_proxy_cancel_after_accept_and_writes_closed_test",
  2776. "platforms": [
  2777. "linux",
  2778. "mac",
  2779. "posix",
  2780. "windows"
  2781. ]
  2782. },
  2783. {
  2784. "flaky": false,
  2785. "language": "c",
  2786. "name": "chttp2_fullstack_with_proxy_cancel_after_invoke_test",
  2787. "platforms": [
  2788. "linux",
  2789. "mac",
  2790. "posix",
  2791. "windows"
  2792. ]
  2793. },
  2794. {
  2795. "flaky": false,
  2796. "language": "c",
  2797. "name": "chttp2_fullstack_with_proxy_cancel_before_invoke_test",
  2798. "platforms": [
  2799. "linux",
  2800. "mac",
  2801. "posix",
  2802. "windows"
  2803. ]
  2804. },
  2805. {
  2806. "flaky": false,
  2807. "language": "c",
  2808. "name": "chttp2_fullstack_with_proxy_cancel_in_a_vacuum_test",
  2809. "platforms": [
  2810. "linux",
  2811. "mac",
  2812. "posix",
  2813. "windows"
  2814. ]
  2815. },
  2816. {
  2817. "flaky": false,
  2818. "language": "c",
  2819. "name": "chttp2_fullstack_with_proxy_census_simple_request_test",
  2820. "platforms": [
  2821. "linux",
  2822. "mac",
  2823. "posix",
  2824. "windows"
  2825. ]
  2826. },
  2827. {
  2828. "flaky": false,
  2829. "language": "c",
  2830. "name": "chttp2_fullstack_with_proxy_default_host_test",
  2831. "platforms": [
  2832. "linux",
  2833. "mac",
  2834. "posix",
  2835. "windows"
  2836. ]
  2837. },
  2838. {
  2839. "flaky": false,
  2840. "language": "c",
  2841. "name": "chttp2_fullstack_with_proxy_disappearing_server_test",
  2842. "platforms": [
  2843. "linux",
  2844. "mac",
  2845. "posix",
  2846. "windows"
  2847. ]
  2848. },
  2849. {
  2850. "flaky": false,
  2851. "language": "c",
  2852. "name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_inflight_calls_test",
  2853. "platforms": [
  2854. "linux",
  2855. "mac",
  2856. "posix",
  2857. "windows"
  2858. ]
  2859. },
  2860. {
  2861. "flaky": false,
  2862. "language": "c",
  2863. "name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_tags_test",
  2864. "platforms": [
  2865. "linux",
  2866. "mac",
  2867. "posix",
  2868. "windows"
  2869. ]
  2870. },
  2871. {
  2872. "flaky": false,
  2873. "language": "c",
  2874. "name": "chttp2_fullstack_with_proxy_empty_batch_test",
  2875. "platforms": [
  2876. "linux",
  2877. "mac",
  2878. "posix",
  2879. "windows"
  2880. ]
  2881. },
  2882. {
  2883. "flaky": false,
  2884. "language": "c",
  2885. "name": "chttp2_fullstack_with_proxy_graceful_server_shutdown_test",
  2886. "platforms": [
  2887. "linux",
  2888. "mac",
  2889. "posix",
  2890. "windows"
  2891. ]
  2892. },
  2893. {
  2894. "flaky": false,
  2895. "language": "c",
  2896. "name": "chttp2_fullstack_with_proxy_invoke_large_request_test",
  2897. "platforms": [
  2898. "linux",
  2899. "mac",
  2900. "posix",
  2901. "windows"
  2902. ]
  2903. },
  2904. {
  2905. "flaky": false,
  2906. "language": "c",
  2907. "name": "chttp2_fullstack_with_proxy_max_message_length_test",
  2908. "platforms": [
  2909. "linux",
  2910. "mac",
  2911. "posix",
  2912. "windows"
  2913. ]
  2914. },
  2915. {
  2916. "flaky": false,
  2917. "language": "c",
  2918. "name": "chttp2_fullstack_with_proxy_no_op_test",
  2919. "platforms": [
  2920. "linux",
  2921. "mac",
  2922. "posix",
  2923. "windows"
  2924. ]
  2925. },
  2926. {
  2927. "flaky": false,
  2928. "language": "c",
  2929. "name": "chttp2_fullstack_with_proxy_ping_pong_streaming_test",
  2930. "platforms": [
  2931. "linux",
  2932. "mac",
  2933. "posix",
  2934. "windows"
  2935. ]
  2936. },
  2937. {
  2938. "flaky": false,
  2939. "language": "c",
  2940. "name": "chttp2_fullstack_with_proxy_registered_call_test",
  2941. "platforms": [
  2942. "linux",
  2943. "mac",
  2944. "posix",
  2945. "windows"
  2946. ]
  2947. },
  2948. {
  2949. "flaky": false,
  2950. "language": "c",
  2951. "name": "chttp2_fullstack_with_proxy_request_response_with_binary_metadata_and_payload_test",
  2952. "platforms": [
  2953. "linux",
  2954. "mac",
  2955. "posix",
  2956. "windows"
  2957. ]
  2958. },
  2959. {
  2960. "flaky": false,
  2961. "language": "c",
  2962. "name": "chttp2_fullstack_with_proxy_request_response_with_metadata_and_payload_test",
  2963. "platforms": [
  2964. "linux",
  2965. "mac",
  2966. "posix",
  2967. "windows"
  2968. ]
  2969. },
  2970. {
  2971. "flaky": false,
  2972. "language": "c",
  2973. "name": "chttp2_fullstack_with_proxy_request_response_with_payload_test",
  2974. "platforms": [
  2975. "linux",
  2976. "mac",
  2977. "posix",
  2978. "windows"
  2979. ]
  2980. },
  2981. {
  2982. "flaky": false,
  2983. "language": "c",
  2984. "name": "chttp2_fullstack_with_proxy_request_response_with_payload_and_call_creds_test",
  2985. "platforms": [
  2986. "linux",
  2987. "mac",
  2988. "posix",
  2989. "windows"
  2990. ]
  2991. },
  2992. {
  2993. "flaky": false,
  2994. "language": "c",
  2995. "name": "chttp2_fullstack_with_proxy_request_response_with_trailing_metadata_and_payload_test",
  2996. "platforms": [
  2997. "linux",
  2998. "mac",
  2999. "posix",
  3000. "windows"
  3001. ]
  3002. },
  3003. {
  3004. "flaky": false,
  3005. "language": "c",
  3006. "name": "chttp2_fullstack_with_proxy_request_with_large_metadata_test",
  3007. "platforms": [
  3008. "linux",
  3009. "mac",
  3010. "posix",
  3011. "windows"
  3012. ]
  3013. },
  3014. {
  3015. "flaky": false,
  3016. "language": "c",
  3017. "name": "chttp2_fullstack_with_proxy_request_with_payload_test",
  3018. "platforms": [
  3019. "linux",
  3020. "mac",
  3021. "posix",
  3022. "windows"
  3023. ]
  3024. },
  3025. {
  3026. "flaky": false,
  3027. "language": "c",
  3028. "name": "chttp2_fullstack_with_proxy_server_finishes_request_test",
  3029. "platforms": [
  3030. "linux",
  3031. "mac",
  3032. "posix",
  3033. "windows"
  3034. ]
  3035. },
  3036. {
  3037. "flaky": false,
  3038. "language": "c",
  3039. "name": "chttp2_fullstack_with_proxy_simple_delayed_request_test",
  3040. "platforms": [
  3041. "linux",
  3042. "mac",
  3043. "posix",
  3044. "windows"
  3045. ]
  3046. },
  3047. {
  3048. "flaky": false,
  3049. "language": "c",
  3050. "name": "chttp2_fullstack_with_proxy_simple_request_test",
  3051. "platforms": [
  3052. "linux",
  3053. "mac",
  3054. "posix",
  3055. "windows"
  3056. ]
  3057. },
  3058. {
  3059. "flaky": false,
  3060. "language": "c",
  3061. "name": "chttp2_fullstack_with_proxy_simple_request_with_high_initial_sequence_number_test",
  3062. "platforms": [
  3063. "linux",
  3064. "mac",
  3065. "posix",
  3066. "windows"
  3067. ]
  3068. },
  3069. {
  3070. "flaky": false,
  3071. "language": "c",
  3072. "name": "chttp2_simple_ssl_fullstack_bad_hostname_test",
  3073. "platforms": [
  3074. "linux",
  3075. "mac",
  3076. "posix",
  3077. "windows"
  3078. ]
  3079. },
  3080. {
  3081. "flaky": false,
  3082. "language": "c",
  3083. "name": "chttp2_simple_ssl_fullstack_cancel_after_accept_test",
  3084. "platforms": [
  3085. "linux",
  3086. "mac",
  3087. "posix",
  3088. "windows"
  3089. ]
  3090. },
  3091. {
  3092. "flaky": false,
  3093. "language": "c",
  3094. "name": "chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test",
  3095. "platforms": [
  3096. "linux",
  3097. "mac",
  3098. "posix",
  3099. "windows"
  3100. ]
  3101. },
  3102. {
  3103. "flaky": false,
  3104. "language": "c",
  3105. "name": "chttp2_simple_ssl_fullstack_cancel_after_invoke_test",
  3106. "platforms": [
  3107. "linux",
  3108. "mac",
  3109. "posix",
  3110. "windows"
  3111. ]
  3112. },
  3113. {
  3114. "flaky": false,
  3115. "language": "c",
  3116. "name": "chttp2_simple_ssl_fullstack_cancel_before_invoke_test",
  3117. "platforms": [
  3118. "linux",
  3119. "mac",
  3120. "posix",
  3121. "windows"
  3122. ]
  3123. },
  3124. {
  3125. "flaky": false,
  3126. "language": "c",
  3127. "name": "chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test",
  3128. "platforms": [
  3129. "linux",
  3130. "mac",
  3131. "posix",
  3132. "windows"
  3133. ]
  3134. },
  3135. {
  3136. "flaky": false,
  3137. "language": "c",
  3138. "name": "chttp2_simple_ssl_fullstack_census_simple_request_test",
  3139. "platforms": [
  3140. "linux",
  3141. "mac",
  3142. "posix",
  3143. "windows"
  3144. ]
  3145. },
  3146. {
  3147. "flaky": false,
  3148. "language": "c",
  3149. "name": "chttp2_simple_ssl_fullstack_channel_connectivity_test",
  3150. "platforms": [
  3151. "linux",
  3152. "mac",
  3153. "posix",
  3154. "windows"
  3155. ]
  3156. },
  3157. {
  3158. "flaky": false,
  3159. "language": "c",
  3160. "name": "chttp2_simple_ssl_fullstack_default_host_test",
  3161. "platforms": [
  3162. "linux",
  3163. "mac",
  3164. "posix",
  3165. "windows"
  3166. ]
  3167. },
  3168. {
  3169. "flaky": false,
  3170. "language": "c",
  3171. "name": "chttp2_simple_ssl_fullstack_disappearing_server_test",
  3172. "platforms": [
  3173. "linux",
  3174. "mac",
  3175. "posix",
  3176. "windows"
  3177. ]
  3178. },
  3179. {
  3180. "flaky": false,
  3181. "language": "c",
  3182. "name": "chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test",
  3183. "platforms": [
  3184. "linux",
  3185. "mac",
  3186. "posix",
  3187. "windows"
  3188. ]
  3189. },
  3190. {
  3191. "flaky": false,
  3192. "language": "c",
  3193. "name": "chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test",
  3194. "platforms": [
  3195. "linux",
  3196. "mac",
  3197. "posix",
  3198. "windows"
  3199. ]
  3200. },
  3201. {
  3202. "flaky": false,
  3203. "language": "c",
  3204. "name": "chttp2_simple_ssl_fullstack_empty_batch_test",
  3205. "platforms": [
  3206. "linux",
  3207. "mac",
  3208. "posix",
  3209. "windows"
  3210. ]
  3211. },
  3212. {
  3213. "flaky": false,
  3214. "language": "c",
  3215. "name": "chttp2_simple_ssl_fullstack_graceful_server_shutdown_test",
  3216. "platforms": [
  3217. "linux",
  3218. "mac",
  3219. "posix",
  3220. "windows"
  3221. ]
  3222. },
  3223. {
  3224. "flaky": false,
  3225. "language": "c",
  3226. "name": "chttp2_simple_ssl_fullstack_invoke_large_request_test",
  3227. "platforms": [
  3228. "linux",
  3229. "mac",
  3230. "posix",
  3231. "windows"
  3232. ]
  3233. },
  3234. {
  3235. "flaky": false,
  3236. "language": "c",
  3237. "name": "chttp2_simple_ssl_fullstack_max_concurrent_streams_test",
  3238. "platforms": [
  3239. "linux",
  3240. "mac",
  3241. "posix",
  3242. "windows"
  3243. ]
  3244. },
  3245. {
  3246. "flaky": false,
  3247. "language": "c",
  3248. "name": "chttp2_simple_ssl_fullstack_max_message_length_test",
  3249. "platforms": [
  3250. "linux",
  3251. "mac",
  3252. "posix",
  3253. "windows"
  3254. ]
  3255. },
  3256. {
  3257. "flaky": false,
  3258. "language": "c",
  3259. "name": "chttp2_simple_ssl_fullstack_no_op_test",
  3260. "platforms": [
  3261. "linux",
  3262. "mac",
  3263. "posix",
  3264. "windows"
  3265. ]
  3266. },
  3267. {
  3268. "flaky": false,
  3269. "language": "c",
  3270. "name": "chttp2_simple_ssl_fullstack_ping_pong_streaming_test",
  3271. "platforms": [
  3272. "linux",
  3273. "mac",
  3274. "posix",
  3275. "windows"
  3276. ]
  3277. },
  3278. {
  3279. "flaky": false,
  3280. "language": "c",
  3281. "name": "chttp2_simple_ssl_fullstack_registered_call_test",
  3282. "platforms": [
  3283. "linux",
  3284. "mac",
  3285. "posix",
  3286. "windows"
  3287. ]
  3288. },
  3289. {
  3290. "flaky": false,
  3291. "language": "c",
  3292. "name": "chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test",
  3293. "platforms": [
  3294. "linux",
  3295. "mac",
  3296. "posix",
  3297. "windows"
  3298. ]
  3299. },
  3300. {
  3301. "flaky": false,
  3302. "language": "c",
  3303. "name": "chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test",
  3304. "platforms": [
  3305. "linux",
  3306. "mac",
  3307. "posix",
  3308. "windows"
  3309. ]
  3310. },
  3311. {
  3312. "flaky": false,
  3313. "language": "c",
  3314. "name": "chttp2_simple_ssl_fullstack_request_response_with_payload_test",
  3315. "platforms": [
  3316. "linux",
  3317. "mac",
  3318. "posix",
  3319. "windows"
  3320. ]
  3321. },
  3322. {
  3323. "flaky": false,
  3324. "language": "c",
  3325. "name": "chttp2_simple_ssl_fullstack_request_response_with_payload_and_call_creds_test",
  3326. "platforms": [
  3327. "linux",
  3328. "mac",
  3329. "posix",
  3330. "windows"
  3331. ]
  3332. },
  3333. {
  3334. "flaky": false,
  3335. "language": "c",
  3336. "name": "chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test",
  3337. "platforms": [
  3338. "linux",
  3339. "mac",
  3340. "posix",
  3341. "windows"
  3342. ]
  3343. },
  3344. {
  3345. "flaky": false,
  3346. "language": "c",
  3347. "name": "chttp2_simple_ssl_fullstack_request_with_compressed_payload_test",
  3348. "platforms": [
  3349. "linux",
  3350. "mac",
  3351. "posix",
  3352. "windows"
  3353. ]
  3354. },
  3355. {
  3356. "flaky": false,
  3357. "language": "c",
  3358. "name": "chttp2_simple_ssl_fullstack_request_with_flags_test",
  3359. "platforms": [
  3360. "linux",
  3361. "mac",
  3362. "posix",
  3363. "windows"
  3364. ]
  3365. },
  3366. {
  3367. "flaky": false,
  3368. "language": "c",
  3369. "name": "chttp2_simple_ssl_fullstack_request_with_large_metadata_test",
  3370. "platforms": [
  3371. "linux",
  3372. "mac",
  3373. "posix",
  3374. "windows"
  3375. ]
  3376. },
  3377. {
  3378. "flaky": false,
  3379. "language": "c",
  3380. "name": "chttp2_simple_ssl_fullstack_request_with_payload_test",
  3381. "platforms": [
  3382. "linux",
  3383. "mac",
  3384. "posix",
  3385. "windows"
  3386. ]
  3387. },
  3388. {
  3389. "flaky": false,
  3390. "language": "c",
  3391. "name": "chttp2_simple_ssl_fullstack_server_finishes_request_test",
  3392. "platforms": [
  3393. "linux",
  3394. "mac",
  3395. "posix",
  3396. "windows"
  3397. ]
  3398. },
  3399. {
  3400. "flaky": false,
  3401. "language": "c",
  3402. "name": "chttp2_simple_ssl_fullstack_simple_delayed_request_test",
  3403. "platforms": [
  3404. "linux",
  3405. "mac",
  3406. "posix",
  3407. "windows"
  3408. ]
  3409. },
  3410. {
  3411. "flaky": false,
  3412. "language": "c",
  3413. "name": "chttp2_simple_ssl_fullstack_simple_request_test",
  3414. "platforms": [
  3415. "linux",
  3416. "mac",
  3417. "posix",
  3418. "windows"
  3419. ]
  3420. },
  3421. {
  3422. "flaky": false,
  3423. "language": "c",
  3424. "name": "chttp2_simple_ssl_fullstack_simple_request_with_high_initial_sequence_number_test",
  3425. "platforms": [
  3426. "linux",
  3427. "mac",
  3428. "posix",
  3429. "windows"
  3430. ]
  3431. },
  3432. {
  3433. "flaky": false,
  3434. "language": "c",
  3435. "name": "chttp2_simple_ssl_fullstack_with_poll_bad_hostname_test",
  3436. "platforms": [
  3437. "linux"
  3438. ]
  3439. },
  3440. {
  3441. "flaky": false,
  3442. "language": "c",
  3443. "name": "chttp2_simple_ssl_fullstack_with_poll_cancel_after_accept_test",
  3444. "platforms": [
  3445. "linux"
  3446. ]
  3447. },
  3448. {
  3449. "flaky": false,
  3450. "language": "c",
  3451. "name": "chttp2_simple_ssl_fullstack_with_poll_cancel_after_accept_and_writes_closed_test",
  3452. "platforms": [
  3453. "linux"
  3454. ]
  3455. },
  3456. {
  3457. "flaky": false,
  3458. "language": "c",
  3459. "name": "chttp2_simple_ssl_fullstack_with_poll_cancel_after_invoke_test",
  3460. "platforms": [
  3461. "linux"
  3462. ]
  3463. },
  3464. {
  3465. "flaky": false,
  3466. "language": "c",
  3467. "name": "chttp2_simple_ssl_fullstack_with_poll_cancel_before_invoke_test",
  3468. "platforms": [
  3469. "linux"
  3470. ]
  3471. },
  3472. {
  3473. "flaky": false,
  3474. "language": "c",
  3475. "name": "chttp2_simple_ssl_fullstack_with_poll_cancel_in_a_vacuum_test",
  3476. "platforms": [
  3477. "linux"
  3478. ]
  3479. },
  3480. {
  3481. "flaky": false,
  3482. "language": "c",
  3483. "name": "chttp2_simple_ssl_fullstack_with_poll_census_simple_request_test",
  3484. "platforms": [
  3485. "linux"
  3486. ]
  3487. },
  3488. {
  3489. "flaky": false,
  3490. "language": "c",
  3491. "name": "chttp2_simple_ssl_fullstack_with_poll_channel_connectivity_test",
  3492. "platforms": [
  3493. "linux"
  3494. ]
  3495. },
  3496. {
  3497. "flaky": false,
  3498. "language": "c",
  3499. "name": "chttp2_simple_ssl_fullstack_with_poll_default_host_test",
  3500. "platforms": [
  3501. "linux"
  3502. ]
  3503. },
  3504. {
  3505. "flaky": false,
  3506. "language": "c",
  3507. "name": "chttp2_simple_ssl_fullstack_with_poll_disappearing_server_test",
  3508. "platforms": [
  3509. "linux"
  3510. ]
  3511. },
  3512. {
  3513. "flaky": false,
  3514. "language": "c",
  3515. "name": "chttp2_simple_ssl_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_test",
  3516. "platforms": [
  3517. "linux"
  3518. ]
  3519. },
  3520. {
  3521. "flaky": false,
  3522. "language": "c",
  3523. "name": "chttp2_simple_ssl_fullstack_with_poll_early_server_shutdown_finishes_tags_test",
  3524. "platforms": [
  3525. "linux"
  3526. ]
  3527. },
  3528. {
  3529. "flaky": false,
  3530. "language": "c",
  3531. "name": "chttp2_simple_ssl_fullstack_with_poll_empty_batch_test",
  3532. "platforms": [
  3533. "linux"
  3534. ]
  3535. },
  3536. {
  3537. "flaky": false,
  3538. "language": "c",
  3539. "name": "chttp2_simple_ssl_fullstack_with_poll_graceful_server_shutdown_test",
  3540. "platforms": [
  3541. "linux"
  3542. ]
  3543. },
  3544. {
  3545. "flaky": false,
  3546. "language": "c",
  3547. "name": "chttp2_simple_ssl_fullstack_with_poll_invoke_large_request_test",
  3548. "platforms": [
  3549. "linux"
  3550. ]
  3551. },
  3552. {
  3553. "flaky": false,
  3554. "language": "c",
  3555. "name": "chttp2_simple_ssl_fullstack_with_poll_max_concurrent_streams_test",
  3556. "platforms": [
  3557. "linux"
  3558. ]
  3559. },
  3560. {
  3561. "flaky": false,
  3562. "language": "c",
  3563. "name": "chttp2_simple_ssl_fullstack_with_poll_max_message_length_test",
  3564. "platforms": [
  3565. "linux"
  3566. ]
  3567. },
  3568. {
  3569. "flaky": false,
  3570. "language": "c",
  3571. "name": "chttp2_simple_ssl_fullstack_with_poll_no_op_test",
  3572. "platforms": [
  3573. "linux"
  3574. ]
  3575. },
  3576. {
  3577. "flaky": false,
  3578. "language": "c",
  3579. "name": "chttp2_simple_ssl_fullstack_with_poll_ping_pong_streaming_test",
  3580. "platforms": [
  3581. "linux"
  3582. ]
  3583. },
  3584. {
  3585. "flaky": false,
  3586. "language": "c",
  3587. "name": "chttp2_simple_ssl_fullstack_with_poll_registered_call_test",
  3588. "platforms": [
  3589. "linux"
  3590. ]
  3591. },
  3592. {
  3593. "flaky": false,
  3594. "language": "c",
  3595. "name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_binary_metadata_and_payload_test",
  3596. "platforms": [
  3597. "linux"
  3598. ]
  3599. },
  3600. {
  3601. "flaky": false,
  3602. "language": "c",
  3603. "name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_metadata_and_payload_test",
  3604. "platforms": [
  3605. "linux"
  3606. ]
  3607. },
  3608. {
  3609. "flaky": false,
  3610. "language": "c",
  3611. "name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_payload_test",
  3612. "platforms": [
  3613. "linux"
  3614. ]
  3615. },
  3616. {
  3617. "flaky": false,
  3618. "language": "c",
  3619. "name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_payload_and_call_creds_test",
  3620. "platforms": [
  3621. "linux"
  3622. ]
  3623. },
  3624. {
  3625. "flaky": false,
  3626. "language": "c",
  3627. "name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_test",
  3628. "platforms": [
  3629. "linux"
  3630. ]
  3631. },
  3632. {
  3633. "flaky": false,
  3634. "language": "c",
  3635. "name": "chttp2_simple_ssl_fullstack_with_poll_request_with_compressed_payload_test",
  3636. "platforms": [
  3637. "linux"
  3638. ]
  3639. },
  3640. {
  3641. "flaky": false,
  3642. "language": "c",
  3643. "name": "chttp2_simple_ssl_fullstack_with_poll_request_with_flags_test",
  3644. "platforms": [
  3645. "linux"
  3646. ]
  3647. },
  3648. {
  3649. "flaky": false,
  3650. "language": "c",
  3651. "name": "chttp2_simple_ssl_fullstack_with_poll_request_with_large_metadata_test",
  3652. "platforms": [
  3653. "linux"
  3654. ]
  3655. },
  3656. {
  3657. "flaky": false,
  3658. "language": "c",
  3659. "name": "chttp2_simple_ssl_fullstack_with_poll_request_with_payload_test",
  3660. "platforms": [
  3661. "linux"
  3662. ]
  3663. },
  3664. {
  3665. "flaky": false,
  3666. "language": "c",
  3667. "name": "chttp2_simple_ssl_fullstack_with_poll_server_finishes_request_test",
  3668. "platforms": [
  3669. "linux"
  3670. ]
  3671. },
  3672. {
  3673. "flaky": false,
  3674. "language": "c",
  3675. "name": "chttp2_simple_ssl_fullstack_with_poll_simple_delayed_request_test",
  3676. "platforms": [
  3677. "linux"
  3678. ]
  3679. },
  3680. {
  3681. "flaky": false,
  3682. "language": "c",
  3683. "name": "chttp2_simple_ssl_fullstack_with_poll_simple_request_test",
  3684. "platforms": [
  3685. "linux"
  3686. ]
  3687. },
  3688. {
  3689. "flaky": false,
  3690. "language": "c",
  3691. "name": "chttp2_simple_ssl_fullstack_with_poll_simple_request_with_high_initial_sequence_number_test",
  3692. "platforms": [
  3693. "linux"
  3694. ]
  3695. },
  3696. {
  3697. "flaky": false,
  3698. "language": "c",
  3699. "name": "chttp2_simple_ssl_fullstack_with_proxy_bad_hostname_test",
  3700. "platforms": [
  3701. "linux",
  3702. "mac",
  3703. "posix",
  3704. "windows"
  3705. ]
  3706. },
  3707. {
  3708. "flaky": false,
  3709. "language": "c",
  3710. "name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_after_accept_test",
  3711. "platforms": [
  3712. "linux",
  3713. "mac",
  3714. "posix",
  3715. "windows"
  3716. ]
  3717. },
  3718. {
  3719. "flaky": false,
  3720. "language": "c",
  3721. "name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_after_accept_and_writes_closed_test",
  3722. "platforms": [
  3723. "linux",
  3724. "mac",
  3725. "posix",
  3726. "windows"
  3727. ]
  3728. },
  3729. {
  3730. "flaky": false,
  3731. "language": "c",
  3732. "name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_after_invoke_test",
  3733. "platforms": [
  3734. "linux",
  3735. "mac",
  3736. "posix",
  3737. "windows"
  3738. ]
  3739. },
  3740. {
  3741. "flaky": false,
  3742. "language": "c",
  3743. "name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_before_invoke_test",
  3744. "platforms": [
  3745. "linux",
  3746. "mac",
  3747. "posix",
  3748. "windows"
  3749. ]
  3750. },
  3751. {
  3752. "flaky": false,
  3753. "language": "c",
  3754. "name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_in_a_vacuum_test",
  3755. "platforms": [
  3756. "linux",
  3757. "mac",
  3758. "posix",
  3759. "windows"
  3760. ]
  3761. },
  3762. {
  3763. "flaky": false,
  3764. "language": "c",
  3765. "name": "chttp2_simple_ssl_fullstack_with_proxy_census_simple_request_test",
  3766. "platforms": [
  3767. "linux",
  3768. "mac",
  3769. "posix",
  3770. "windows"
  3771. ]
  3772. },
  3773. {
  3774. "flaky": false,
  3775. "language": "c",
  3776. "name": "chttp2_simple_ssl_fullstack_with_proxy_default_host_test",
  3777. "platforms": [
  3778. "linux",
  3779. "mac",
  3780. "posix",
  3781. "windows"
  3782. ]
  3783. },
  3784. {
  3785. "flaky": false,
  3786. "language": "c",
  3787. "name": "chttp2_simple_ssl_fullstack_with_proxy_disappearing_server_test",
  3788. "platforms": [
  3789. "linux",
  3790. "mac",
  3791. "posix",
  3792. "windows"
  3793. ]
  3794. },
  3795. {
  3796. "flaky": false,
  3797. "language": "c",
  3798. "name": "chttp2_simple_ssl_fullstack_with_proxy_early_server_shutdown_finishes_inflight_calls_test",
  3799. "platforms": [
  3800. "linux",
  3801. "mac",
  3802. "posix",
  3803. "windows"
  3804. ]
  3805. },
  3806. {
  3807. "flaky": false,
  3808. "language": "c",
  3809. "name": "chttp2_simple_ssl_fullstack_with_proxy_early_server_shutdown_finishes_tags_test",
  3810. "platforms": [
  3811. "linux",
  3812. "mac",
  3813. "posix",
  3814. "windows"
  3815. ]
  3816. },
  3817. {
  3818. "flaky": false,
  3819. "language": "c",
  3820. "name": "chttp2_simple_ssl_fullstack_with_proxy_empty_batch_test",
  3821. "platforms": [
  3822. "linux",
  3823. "mac",
  3824. "posix",
  3825. "windows"
  3826. ]
  3827. },
  3828. {
  3829. "flaky": false,
  3830. "language": "c",
  3831. "name": "chttp2_simple_ssl_fullstack_with_proxy_graceful_server_shutdown_test",
  3832. "platforms": [
  3833. "linux",
  3834. "mac",
  3835. "posix",
  3836. "windows"
  3837. ]
  3838. },
  3839. {
  3840. "flaky": false,
  3841. "language": "c",
  3842. "name": "chttp2_simple_ssl_fullstack_with_proxy_invoke_large_request_test",
  3843. "platforms": [
  3844. "linux",
  3845. "mac",
  3846. "posix",
  3847. "windows"
  3848. ]
  3849. },
  3850. {
  3851. "flaky": false,
  3852. "language": "c",
  3853. "name": "chttp2_simple_ssl_fullstack_with_proxy_max_message_length_test",
  3854. "platforms": [
  3855. "linux",
  3856. "mac",
  3857. "posix",
  3858. "windows"
  3859. ]
  3860. },
  3861. {
  3862. "flaky": false,
  3863. "language": "c",
  3864. "name": "chttp2_simple_ssl_fullstack_with_proxy_no_op_test",
  3865. "platforms": [
  3866. "linux",
  3867. "mac",
  3868. "posix",
  3869. "windows"
  3870. ]
  3871. },
  3872. {
  3873. "flaky": false,
  3874. "language": "c",
  3875. "name": "chttp2_simple_ssl_fullstack_with_proxy_ping_pong_streaming_test",
  3876. "platforms": [
  3877. "linux",
  3878. "mac",
  3879. "posix",
  3880. "windows"
  3881. ]
  3882. },
  3883. {
  3884. "flaky": false,
  3885. "language": "c",
  3886. "name": "chttp2_simple_ssl_fullstack_with_proxy_registered_call_test",
  3887. "platforms": [
  3888. "linux",
  3889. "mac",
  3890. "posix",
  3891. "windows"
  3892. ]
  3893. },
  3894. {
  3895. "flaky": false,
  3896. "language": "c",
  3897. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_binary_metadata_and_payload_test",
  3898. "platforms": [
  3899. "linux",
  3900. "mac",
  3901. "posix",
  3902. "windows"
  3903. ]
  3904. },
  3905. {
  3906. "flaky": false,
  3907. "language": "c",
  3908. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_metadata_and_payload_test",
  3909. "platforms": [
  3910. "linux",
  3911. "mac",
  3912. "posix",
  3913. "windows"
  3914. ]
  3915. },
  3916. {
  3917. "flaky": false,
  3918. "language": "c",
  3919. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_payload_test",
  3920. "platforms": [
  3921. "linux",
  3922. "mac",
  3923. "posix",
  3924. "windows"
  3925. ]
  3926. },
  3927. {
  3928. "flaky": false,
  3929. "language": "c",
  3930. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_payload_and_call_creds_test",
  3931. "platforms": [
  3932. "linux",
  3933. "mac",
  3934. "posix",
  3935. "windows"
  3936. ]
  3937. },
  3938. {
  3939. "flaky": false,
  3940. "language": "c",
  3941. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_trailing_metadata_and_payload_test",
  3942. "platforms": [
  3943. "linux",
  3944. "mac",
  3945. "posix",
  3946. "windows"
  3947. ]
  3948. },
  3949. {
  3950. "flaky": false,
  3951. "language": "c",
  3952. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_with_large_metadata_test",
  3953. "platforms": [
  3954. "linux",
  3955. "mac",
  3956. "posix",
  3957. "windows"
  3958. ]
  3959. },
  3960. {
  3961. "flaky": false,
  3962. "language": "c",
  3963. "name": "chttp2_simple_ssl_fullstack_with_proxy_request_with_payload_test",
  3964. "platforms": [
  3965. "linux",
  3966. "mac",
  3967. "posix",
  3968. "windows"
  3969. ]
  3970. },
  3971. {
  3972. "flaky": false,
  3973. "language": "c",
  3974. "name": "chttp2_simple_ssl_fullstack_with_proxy_server_finishes_request_test",
  3975. "platforms": [
  3976. "linux",
  3977. "mac",
  3978. "posix",
  3979. "windows"
  3980. ]
  3981. },
  3982. {
  3983. "flaky": false,
  3984. "language": "c",
  3985. "name": "chttp2_simple_ssl_fullstack_with_proxy_simple_delayed_request_test",
  3986. "platforms": [
  3987. "linux",
  3988. "mac",
  3989. "posix",
  3990. "windows"
  3991. ]
  3992. },
  3993. {
  3994. "flaky": false,
  3995. "language": "c",
  3996. "name": "chttp2_simple_ssl_fullstack_with_proxy_simple_request_test",
  3997. "platforms": [
  3998. "linux",
  3999. "mac",
  4000. "posix",
  4001. "windows"
  4002. ]
  4003. },
  4004. {
  4005. "flaky": false,
  4006. "language": "c",
  4007. "name": "chttp2_simple_ssl_fullstack_with_proxy_simple_request_with_high_initial_sequence_number_test",
  4008. "platforms": [
  4009. "linux",
  4010. "mac",
  4011. "posix",
  4012. "windows"
  4013. ]
  4014. },
  4015. {
  4016. "flaky": false,
  4017. "language": "c",
  4018. "name": "chttp2_simple_ssl_with_oauth2_fullstack_bad_hostname_test",
  4019. "platforms": [
  4020. "linux",
  4021. "mac",
  4022. "posix",
  4023. "windows"
  4024. ]
  4025. },
  4026. {
  4027. "flaky": false,
  4028. "language": "c",
  4029. "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test",
  4030. "platforms": [
  4031. "linux",
  4032. "mac",
  4033. "posix",
  4034. "windows"
  4035. ]
  4036. },
  4037. {
  4038. "flaky": false,
  4039. "language": "c",
  4040. "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test",
  4041. "platforms": [
  4042. "linux",
  4043. "mac",
  4044. "posix",
  4045. "windows"
  4046. ]
  4047. },
  4048. {
  4049. "flaky": false,
  4050. "language": "c",
  4051. "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test",
  4052. "platforms": [
  4053. "linux",
  4054. "mac",
  4055. "posix",
  4056. "windows"
  4057. ]
  4058. },
  4059. {
  4060. "flaky": false,
  4061. "language": "c",
  4062. "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test",
  4063. "platforms": [
  4064. "linux",
  4065. "mac",
  4066. "posix",
  4067. "windows"
  4068. ]
  4069. },
  4070. {
  4071. "flaky": false,
  4072. "language": "c",
  4073. "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test",
  4074. "platforms": [
  4075. "linux",
  4076. "mac",
  4077. "posix",
  4078. "windows"
  4079. ]
  4080. },
  4081. {
  4082. "flaky": false,
  4083. "language": "c",
  4084. "name": "chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test",
  4085. "platforms": [
  4086. "linux",
  4087. "mac",
  4088. "posix",
  4089. "windows"
  4090. ]
  4091. },
  4092. {
  4093. "flaky": false,
  4094. "language": "c",
  4095. "name": "chttp2_simple_ssl_with_oauth2_fullstack_channel_connectivity_test",
  4096. "platforms": [
  4097. "linux",
  4098. "mac",
  4099. "posix",
  4100. "windows"
  4101. ]
  4102. },
  4103. {
  4104. "flaky": false,
  4105. "language": "c",
  4106. "name": "chttp2_simple_ssl_with_oauth2_fullstack_default_host_test",
  4107. "platforms": [
  4108. "linux",
  4109. "mac",
  4110. "posix",
  4111. "windows"
  4112. ]
  4113. },
  4114. {
  4115. "flaky": false,
  4116. "language": "c",
  4117. "name": "chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test",
  4118. "platforms": [
  4119. "linux",
  4120. "mac",
  4121. "posix",
  4122. "windows"
  4123. ]
  4124. },
  4125. {
  4126. "flaky": false,
  4127. "language": "c",
  4128. "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test",
  4129. "platforms": [
  4130. "linux",
  4131. "mac",
  4132. "posix",
  4133. "windows"
  4134. ]
  4135. },
  4136. {
  4137. "flaky": false,
  4138. "language": "c",
  4139. "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test",
  4140. "platforms": [
  4141. "linux",
  4142. "mac",
  4143. "posix",
  4144. "windows"
  4145. ]
  4146. },
  4147. {
  4148. "flaky": false,
  4149. "language": "c",
  4150. "name": "chttp2_simple_ssl_with_oauth2_fullstack_empty_batch_test",
  4151. "platforms": [
  4152. "linux",
  4153. "mac",
  4154. "posix",
  4155. "windows"
  4156. ]
  4157. },
  4158. {
  4159. "flaky": false,
  4160. "language": "c",
  4161. "name": "chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test",
  4162. "platforms": [
  4163. "linux",
  4164. "mac",
  4165. "posix",
  4166. "windows"
  4167. ]
  4168. },
  4169. {
  4170. "flaky": false,
  4171. "language": "c",
  4172. "name": "chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test",
  4173. "platforms": [
  4174. "linux",
  4175. "mac",
  4176. "posix",
  4177. "windows"
  4178. ]
  4179. },
  4180. {
  4181. "flaky": false,
  4182. "language": "c",
  4183. "name": "chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test",
  4184. "platforms": [
  4185. "linux",
  4186. "mac",
  4187. "posix",
  4188. "windows"
  4189. ]
  4190. },
  4191. {
  4192. "flaky": false,
  4193. "language": "c",
  4194. "name": "chttp2_simple_ssl_with_oauth2_fullstack_max_message_length_test",
  4195. "platforms": [
  4196. "linux",
  4197. "mac",
  4198. "posix",
  4199. "windows"
  4200. ]
  4201. },
  4202. {
  4203. "flaky": false,
  4204. "language": "c",
  4205. "name": "chttp2_simple_ssl_with_oauth2_fullstack_no_op_test",
  4206. "platforms": [
  4207. "linux",
  4208. "mac",
  4209. "posix",
  4210. "windows"
  4211. ]
  4212. },
  4213. {
  4214. "flaky": false,
  4215. "language": "c",
  4216. "name": "chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test",
  4217. "platforms": [
  4218. "linux",
  4219. "mac",
  4220. "posix",
  4221. "windows"
  4222. ]
  4223. },
  4224. {
  4225. "flaky": false,
  4226. "language": "c",
  4227. "name": "chttp2_simple_ssl_with_oauth2_fullstack_registered_call_test",
  4228. "platforms": [
  4229. "linux",
  4230. "mac",
  4231. "posix",
  4232. "windows"
  4233. ]
  4234. },
  4235. {
  4236. "flaky": false,
  4237. "language": "c",
  4238. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test",
  4239. "platforms": [
  4240. "linux",
  4241. "mac",
  4242. "posix",
  4243. "windows"
  4244. ]
  4245. },
  4246. {
  4247. "flaky": false,
  4248. "language": "c",
  4249. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test",
  4250. "platforms": [
  4251. "linux",
  4252. "mac",
  4253. "posix",
  4254. "windows"
  4255. ]
  4256. },
  4257. {
  4258. "flaky": false,
  4259. "language": "c",
  4260. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test",
  4261. "platforms": [
  4262. "linux",
  4263. "mac",
  4264. "posix",
  4265. "windows"
  4266. ]
  4267. },
  4268. {
  4269. "flaky": false,
  4270. "language": "c",
  4271. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_and_call_creds_test",
  4272. "platforms": [
  4273. "linux",
  4274. "mac",
  4275. "posix",
  4276. "windows"
  4277. ]
  4278. },
  4279. {
  4280. "flaky": false,
  4281. "language": "c",
  4282. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test",
  4283. "platforms": [
  4284. "linux",
  4285. "mac",
  4286. "posix",
  4287. "windows"
  4288. ]
  4289. },
  4290. {
  4291. "flaky": false,
  4292. "language": "c",
  4293. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_compressed_payload_test",
  4294. "platforms": [
  4295. "linux",
  4296. "mac",
  4297. "posix",
  4298. "windows"
  4299. ]
  4300. },
  4301. {
  4302. "flaky": false,
  4303. "language": "c",
  4304. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_flags_test",
  4305. "platforms": [
  4306. "linux",
  4307. "mac",
  4308. "posix",
  4309. "windows"
  4310. ]
  4311. },
  4312. {
  4313. "flaky": false,
  4314. "language": "c",
  4315. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_large_metadata_test",
  4316. "platforms": [
  4317. "linux",
  4318. "mac",
  4319. "posix",
  4320. "windows"
  4321. ]
  4322. },
  4323. {
  4324. "flaky": false,
  4325. "language": "c",
  4326. "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_payload_test",
  4327. "platforms": [
  4328. "linux",
  4329. "mac",
  4330. "posix",
  4331. "windows"
  4332. ]
  4333. },
  4334. {
  4335. "flaky": false,
  4336. "language": "c",
  4337. "name": "chttp2_simple_ssl_with_oauth2_fullstack_server_finishes_request_test",
  4338. "platforms": [
  4339. "linux",
  4340. "mac",
  4341. "posix",
  4342. "windows"
  4343. ]
  4344. },
  4345. {
  4346. "flaky": false,
  4347. "language": "c",
  4348. "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test",
  4349. "platforms": [
  4350. "linux",
  4351. "mac",
  4352. "posix",
  4353. "windows"
  4354. ]
  4355. },
  4356. {
  4357. "flaky": false,
  4358. "language": "c",
  4359. "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test",
  4360. "platforms": [
  4361. "linux",
  4362. "mac",
  4363. "posix",
  4364. "windows"
  4365. ]
  4366. },
  4367. {
  4368. "flaky": false,
  4369. "language": "c",
  4370. "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_with_high_initial_sequence_number_test",
  4371. "platforms": [
  4372. "linux",
  4373. "mac",
  4374. "posix",
  4375. "windows"
  4376. ]
  4377. },
  4378. {
  4379. "flaky": false,
  4380. "language": "c",
  4381. "name": "chttp2_socket_pair_bad_hostname_test",
  4382. "platforms": [
  4383. "linux",
  4384. "mac",
  4385. "posix",
  4386. "windows"
  4387. ]
  4388. },
  4389. {
  4390. "flaky": false,
  4391. "language": "c",
  4392. "name": "chttp2_socket_pair_cancel_after_accept_test",
  4393. "platforms": [
  4394. "linux",
  4395. "mac",
  4396. "posix",
  4397. "windows"
  4398. ]
  4399. },
  4400. {
  4401. "flaky": false,
  4402. "language": "c",
  4403. "name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_test",
  4404. "platforms": [
  4405. "linux",
  4406. "mac",
  4407. "posix",
  4408. "windows"
  4409. ]
  4410. },
  4411. {
  4412. "flaky": false,
  4413. "language": "c",
  4414. "name": "chttp2_socket_pair_cancel_after_invoke_test",
  4415. "platforms": [
  4416. "linux",
  4417. "mac",
  4418. "posix",
  4419. "windows"
  4420. ]
  4421. },
  4422. {
  4423. "flaky": false,
  4424. "language": "c",
  4425. "name": "chttp2_socket_pair_cancel_before_invoke_test",
  4426. "platforms": [
  4427. "linux",
  4428. "mac",
  4429. "posix",
  4430. "windows"
  4431. ]
  4432. },
  4433. {
  4434. "flaky": false,
  4435. "language": "c",
  4436. "name": "chttp2_socket_pair_cancel_in_a_vacuum_test",
  4437. "platforms": [
  4438. "linux",
  4439. "mac",
  4440. "posix",
  4441. "windows"
  4442. ]
  4443. },
  4444. {
  4445. "flaky": false,
  4446. "language": "c",
  4447. "name": "chttp2_socket_pair_census_simple_request_test",
  4448. "platforms": [
  4449. "linux",
  4450. "mac",
  4451. "posix",
  4452. "windows"
  4453. ]
  4454. },
  4455. {
  4456. "flaky": false,
  4457. "language": "c",
  4458. "name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test",
  4459. "platforms": [
  4460. "linux",
  4461. "mac",
  4462. "posix",
  4463. "windows"
  4464. ]
  4465. },
  4466. {
  4467. "flaky": false,
  4468. "language": "c",
  4469. "name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_test",
  4470. "platforms": [
  4471. "linux",
  4472. "mac",
  4473. "posix",
  4474. "windows"
  4475. ]
  4476. },
  4477. {
  4478. "flaky": false,
  4479. "language": "c",
  4480. "name": "chttp2_socket_pair_empty_batch_test",
  4481. "platforms": [
  4482. "linux",
  4483. "mac",
  4484. "posix",
  4485. "windows"
  4486. ]
  4487. },
  4488. {
  4489. "flaky": false,
  4490. "language": "c",
  4491. "name": "chttp2_socket_pair_graceful_server_shutdown_test",
  4492. "platforms": [
  4493. "linux",
  4494. "mac",
  4495. "posix",
  4496. "windows"
  4497. ]
  4498. },
  4499. {
  4500. "flaky": false,
  4501. "language": "c",
  4502. "name": "chttp2_socket_pair_invoke_large_request_test",
  4503. "platforms": [
  4504. "linux",
  4505. "mac",
  4506. "posix",
  4507. "windows"
  4508. ]
  4509. },
  4510. {
  4511. "flaky": false,
  4512. "language": "c",
  4513. "name": "chttp2_socket_pair_max_concurrent_streams_test",
  4514. "platforms": [
  4515. "linux",
  4516. "mac",
  4517. "posix",
  4518. "windows"
  4519. ]
  4520. },
  4521. {
  4522. "flaky": false,
  4523. "language": "c",
  4524. "name": "chttp2_socket_pair_max_message_length_test",
  4525. "platforms": [
  4526. "linux",
  4527. "mac",
  4528. "posix",
  4529. "windows"
  4530. ]
  4531. },
  4532. {
  4533. "flaky": false,
  4534. "language": "c",
  4535. "name": "chttp2_socket_pair_no_op_test",
  4536. "platforms": [
  4537. "linux",
  4538. "mac",
  4539. "posix",
  4540. "windows"
  4541. ]
  4542. },
  4543. {
  4544. "flaky": false,
  4545. "language": "c",
  4546. "name": "chttp2_socket_pair_ping_pong_streaming_test",
  4547. "platforms": [
  4548. "linux",
  4549. "mac",
  4550. "posix",
  4551. "windows"
  4552. ]
  4553. },
  4554. {
  4555. "flaky": false,
  4556. "language": "c",
  4557. "name": "chttp2_socket_pair_registered_call_test",
  4558. "platforms": [
  4559. "linux",
  4560. "mac",
  4561. "posix",
  4562. "windows"
  4563. ]
  4564. },
  4565. {
  4566. "flaky": false,
  4567. "language": "c",
  4568. "name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test",
  4569. "platforms": [
  4570. "linux",
  4571. "mac",
  4572. "posix",
  4573. "windows"
  4574. ]
  4575. },
  4576. {
  4577. "flaky": false,
  4578. "language": "c",
  4579. "name": "chttp2_socket_pair_request_response_with_metadata_and_payload_test",
  4580. "platforms": [
  4581. "linux",
  4582. "mac",
  4583. "posix",
  4584. "windows"
  4585. ]
  4586. },
  4587. {
  4588. "flaky": false,
  4589. "language": "c",
  4590. "name": "chttp2_socket_pair_request_response_with_payload_test",
  4591. "platforms": [
  4592. "linux",
  4593. "mac",
  4594. "posix",
  4595. "windows"
  4596. ]
  4597. },
  4598. {
  4599. "flaky": false,
  4600. "language": "c",
  4601. "name": "chttp2_socket_pair_request_response_with_payload_and_call_creds_test",
  4602. "platforms": [
  4603. "linux",
  4604. "mac",
  4605. "posix",
  4606. "windows"
  4607. ]
  4608. },
  4609. {
  4610. "flaky": false,
  4611. "language": "c",
  4612. "name": "chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test",
  4613. "platforms": [
  4614. "linux",
  4615. "mac",
  4616. "posix",
  4617. "windows"
  4618. ]
  4619. },
  4620. {
  4621. "flaky": false,
  4622. "language": "c",
  4623. "name": "chttp2_socket_pair_request_with_compressed_payload_test",
  4624. "platforms": [
  4625. "linux",
  4626. "mac",
  4627. "posix",
  4628. "windows"
  4629. ]
  4630. },
  4631. {
  4632. "flaky": false,
  4633. "language": "c",
  4634. "name": "chttp2_socket_pair_request_with_flags_test",
  4635. "platforms": [
  4636. "linux",
  4637. "mac",
  4638. "posix",
  4639. "windows"
  4640. ]
  4641. },
  4642. {
  4643. "flaky": false,
  4644. "language": "c",
  4645. "name": "chttp2_socket_pair_request_with_large_metadata_test",
  4646. "platforms": [
  4647. "linux",
  4648. "mac",
  4649. "posix",
  4650. "windows"
  4651. ]
  4652. },
  4653. {
  4654. "flaky": false,
  4655. "language": "c",
  4656. "name": "chttp2_socket_pair_request_with_payload_test",
  4657. "platforms": [
  4658. "linux",
  4659. "mac",
  4660. "posix",
  4661. "windows"
  4662. ]
  4663. },
  4664. {
  4665. "flaky": false,
  4666. "language": "c",
  4667. "name": "chttp2_socket_pair_server_finishes_request_test",
  4668. "platforms": [
  4669. "linux",
  4670. "mac",
  4671. "posix",
  4672. "windows"
  4673. ]
  4674. },
  4675. {
  4676. "flaky": false,
  4677. "language": "c",
  4678. "name": "chttp2_socket_pair_simple_request_test",
  4679. "platforms": [
  4680. "linux",
  4681. "mac",
  4682. "posix",
  4683. "windows"
  4684. ]
  4685. },
  4686. {
  4687. "flaky": false,
  4688. "language": "c",
  4689. "name": "chttp2_socket_pair_simple_request_with_high_initial_sequence_number_test",
  4690. "platforms": [
  4691. "linux",
  4692. "mac",
  4693. "posix",
  4694. "windows"
  4695. ]
  4696. },
  4697. {
  4698. "flaky": false,
  4699. "language": "c",
  4700. "name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_test",
  4701. "platforms": [
  4702. "linux",
  4703. "mac",
  4704. "posix",
  4705. "windows"
  4706. ]
  4707. },
  4708. {
  4709. "flaky": false,
  4710. "language": "c",
  4711. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test",
  4712. "platforms": [
  4713. "linux",
  4714. "mac",
  4715. "posix",
  4716. "windows"
  4717. ]
  4718. },
  4719. {
  4720. "flaky": false,
  4721. "language": "c",
  4722. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test",
  4723. "platforms": [
  4724. "linux",
  4725. "mac",
  4726. "posix",
  4727. "windows"
  4728. ]
  4729. },
  4730. {
  4731. "flaky": false,
  4732. "language": "c",
  4733. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test",
  4734. "platforms": [
  4735. "linux",
  4736. "mac",
  4737. "posix",
  4738. "windows"
  4739. ]
  4740. },
  4741. {
  4742. "flaky": false,
  4743. "language": "c",
  4744. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test",
  4745. "platforms": [
  4746. "linux",
  4747. "mac",
  4748. "posix",
  4749. "windows"
  4750. ]
  4751. },
  4752. {
  4753. "flaky": false,
  4754. "language": "c",
  4755. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test",
  4756. "platforms": [
  4757. "linux",
  4758. "mac",
  4759. "posix",
  4760. "windows"
  4761. ]
  4762. },
  4763. {
  4764. "flaky": false,
  4765. "language": "c",
  4766. "name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test",
  4767. "platforms": [
  4768. "linux",
  4769. "mac",
  4770. "posix",
  4771. "windows"
  4772. ]
  4773. },
  4774. {
  4775. "flaky": false,
  4776. "language": "c",
  4777. "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test",
  4778. "platforms": [
  4779. "linux",
  4780. "mac",
  4781. "posix",
  4782. "windows"
  4783. ]
  4784. },
  4785. {
  4786. "flaky": false,
  4787. "language": "c",
  4788. "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test",
  4789. "platforms": [
  4790. "linux",
  4791. "mac",
  4792. "posix",
  4793. "windows"
  4794. ]
  4795. },
  4796. {
  4797. "flaky": false,
  4798. "language": "c",
  4799. "name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_test",
  4800. "platforms": [
  4801. "linux",
  4802. "mac",
  4803. "posix",
  4804. "windows"
  4805. ]
  4806. },
  4807. {
  4808. "flaky": false,
  4809. "language": "c",
  4810. "name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test",
  4811. "platforms": [
  4812. "linux",
  4813. "mac",
  4814. "posix",
  4815. "windows"
  4816. ]
  4817. },
  4818. {
  4819. "flaky": false,
  4820. "language": "c",
  4821. "name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test",
  4822. "platforms": [
  4823. "linux",
  4824. "mac",
  4825. "posix",
  4826. "windows"
  4827. ]
  4828. },
  4829. {
  4830. "flaky": false,
  4831. "language": "c",
  4832. "name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test",
  4833. "platforms": [
  4834. "linux",
  4835. "mac",
  4836. "posix",
  4837. "windows"
  4838. ]
  4839. },
  4840. {
  4841. "flaky": false,
  4842. "language": "c",
  4843. "name": "chttp2_socket_pair_one_byte_at_a_time_max_message_length_test",
  4844. "platforms": [
  4845. "linux",
  4846. "mac",
  4847. "posix",
  4848. "windows"
  4849. ]
  4850. },
  4851. {
  4852. "flaky": false,
  4853. "language": "c",
  4854. "name": "chttp2_socket_pair_one_byte_at_a_time_no_op_test",
  4855. "platforms": [
  4856. "linux",
  4857. "mac",
  4858. "posix",
  4859. "windows"
  4860. ]
  4861. },
  4862. {
  4863. "flaky": false,
  4864. "language": "c",
  4865. "name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test",
  4866. "platforms": [
  4867. "linux",
  4868. "mac",
  4869. "posix",
  4870. "windows"
  4871. ]
  4872. },
  4873. {
  4874. "flaky": false,
  4875. "language": "c",
  4876. "name": "chttp2_socket_pair_one_byte_at_a_time_registered_call_test",
  4877. "platforms": [
  4878. "linux",
  4879. "mac",
  4880. "posix",
  4881. "windows"
  4882. ]
  4883. },
  4884. {
  4885. "flaky": false,
  4886. "language": "c",
  4887. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test",
  4888. "platforms": [
  4889. "linux",
  4890. "mac",
  4891. "posix",
  4892. "windows"
  4893. ]
  4894. },
  4895. {
  4896. "flaky": false,
  4897. "language": "c",
  4898. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test",
  4899. "platforms": [
  4900. "linux",
  4901. "mac",
  4902. "posix",
  4903. "windows"
  4904. ]
  4905. },
  4906. {
  4907. "flaky": false,
  4908. "language": "c",
  4909. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test",
  4910. "platforms": [
  4911. "linux",
  4912. "mac",
  4913. "posix",
  4914. "windows"
  4915. ]
  4916. },
  4917. {
  4918. "flaky": false,
  4919. "language": "c",
  4920. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_and_call_creds_test",
  4921. "platforms": [
  4922. "linux",
  4923. "mac",
  4924. "posix",
  4925. "windows"
  4926. ]
  4927. },
  4928. {
  4929. "flaky": false,
  4930. "language": "c",
  4931. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test",
  4932. "platforms": [
  4933. "linux",
  4934. "mac",
  4935. "posix",
  4936. "windows"
  4937. ]
  4938. },
  4939. {
  4940. "flaky": false,
  4941. "language": "c",
  4942. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_compressed_payload_test",
  4943. "platforms": [
  4944. "linux",
  4945. "mac",
  4946. "posix",
  4947. "windows"
  4948. ]
  4949. },
  4950. {
  4951. "flaky": false,
  4952. "language": "c",
  4953. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_flags_test",
  4954. "platforms": [
  4955. "linux",
  4956. "mac",
  4957. "posix",
  4958. "windows"
  4959. ]
  4960. },
  4961. {
  4962. "flaky": false,
  4963. "language": "c",
  4964. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_test",
  4965. "platforms": [
  4966. "linux",
  4967. "mac",
  4968. "posix",
  4969. "windows"
  4970. ]
  4971. },
  4972. {
  4973. "flaky": false,
  4974. "language": "c",
  4975. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_test",
  4976. "platforms": [
  4977. "linux",
  4978. "mac",
  4979. "posix",
  4980. "windows"
  4981. ]
  4982. },
  4983. {
  4984. "flaky": false,
  4985. "language": "c",
  4986. "name": "chttp2_socket_pair_one_byte_at_a_time_server_finishes_request_test",
  4987. "platforms": [
  4988. "linux",
  4989. "mac",
  4990. "posix",
  4991. "windows"
  4992. ]
  4993. },
  4994. {
  4995. "flaky": false,
  4996. "language": "c",
  4997. "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_test",
  4998. "platforms": [
  4999. "linux",
  5000. "mac",
  5001. "posix",
  5002. "windows"
  5003. ]
  5004. },
  5005. {
  5006. "flaky": false,
  5007. "language": "c",
  5008. "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_with_high_initial_sequence_number_test",
  5009. "platforms": [
  5010. "linux",
  5011. "mac",
  5012. "posix",
  5013. "windows"
  5014. ]
  5015. },
  5016. {
  5017. "flaky": false,
  5018. "language": "c",
  5019. "name": "chttp2_socket_pair_with_grpc_trace_bad_hostname_test",
  5020. "platforms": [
  5021. "linux",
  5022. "mac",
  5023. "posix",
  5024. "windows"
  5025. ]
  5026. },
  5027. {
  5028. "flaky": false,
  5029. "language": "c",
  5030. "name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_test",
  5031. "platforms": [
  5032. "linux",
  5033. "mac",
  5034. "posix",
  5035. "windows"
  5036. ]
  5037. },
  5038. {
  5039. "flaky": false,
  5040. "language": "c",
  5041. "name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_and_writes_closed_test",
  5042. "platforms": [
  5043. "linux",
  5044. "mac",
  5045. "posix",
  5046. "windows"
  5047. ]
  5048. },
  5049. {
  5050. "flaky": false,
  5051. "language": "c",
  5052. "name": "chttp2_socket_pair_with_grpc_trace_cancel_after_invoke_test",
  5053. "platforms": [
  5054. "linux",
  5055. "mac",
  5056. "posix",
  5057. "windows"
  5058. ]
  5059. },
  5060. {
  5061. "flaky": false,
  5062. "language": "c",
  5063. "name": "chttp2_socket_pair_with_grpc_trace_cancel_before_invoke_test",
  5064. "platforms": [
  5065. "linux",
  5066. "mac",
  5067. "posix",
  5068. "windows"
  5069. ]
  5070. },
  5071. {
  5072. "flaky": false,
  5073. "language": "c",
  5074. "name": "chttp2_socket_pair_with_grpc_trace_cancel_in_a_vacuum_test",
  5075. "platforms": [
  5076. "linux",
  5077. "mac",
  5078. "posix",
  5079. "windows"
  5080. ]
  5081. },
  5082. {
  5083. "flaky": false,
  5084. "language": "c",
  5085. "name": "chttp2_socket_pair_with_grpc_trace_census_simple_request_test",
  5086. "platforms": [
  5087. "linux",
  5088. "mac",
  5089. "posix",
  5090. "windows"
  5091. ]
  5092. },
  5093. {
  5094. "flaky": false,
  5095. "language": "c",
  5096. "name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_inflight_calls_test",
  5097. "platforms": [
  5098. "linux",
  5099. "mac",
  5100. "posix",
  5101. "windows"
  5102. ]
  5103. },
  5104. {
  5105. "flaky": false,
  5106. "language": "c",
  5107. "name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_tags_test",
  5108. "platforms": [
  5109. "linux",
  5110. "mac",
  5111. "posix",
  5112. "windows"
  5113. ]
  5114. },
  5115. {
  5116. "flaky": false,
  5117. "language": "c",
  5118. "name": "chttp2_socket_pair_with_grpc_trace_empty_batch_test",
  5119. "platforms": [
  5120. "linux",
  5121. "mac",
  5122. "posix",
  5123. "windows"
  5124. ]
  5125. },
  5126. {
  5127. "flaky": false,
  5128. "language": "c",
  5129. "name": "chttp2_socket_pair_with_grpc_trace_graceful_server_shutdown_test",
  5130. "platforms": [
  5131. "linux",
  5132. "mac",
  5133. "posix",
  5134. "windows"
  5135. ]
  5136. },
  5137. {
  5138. "flaky": false,
  5139. "language": "c",
  5140. "name": "chttp2_socket_pair_with_grpc_trace_invoke_large_request_test",
  5141. "platforms": [
  5142. "linux",
  5143. "mac",
  5144. "posix",
  5145. "windows"
  5146. ]
  5147. },
  5148. {
  5149. "flaky": false,
  5150. "language": "c",
  5151. "name": "chttp2_socket_pair_with_grpc_trace_max_concurrent_streams_test",
  5152. "platforms": [
  5153. "linux",
  5154. "mac",
  5155. "posix",
  5156. "windows"
  5157. ]
  5158. },
  5159. {
  5160. "flaky": false,
  5161. "language": "c",
  5162. "name": "chttp2_socket_pair_with_grpc_trace_max_message_length_test",
  5163. "platforms": [
  5164. "linux",
  5165. "mac",
  5166. "posix",
  5167. "windows"
  5168. ]
  5169. },
  5170. {
  5171. "flaky": false,
  5172. "language": "c",
  5173. "name": "chttp2_socket_pair_with_grpc_trace_no_op_test",
  5174. "platforms": [
  5175. "linux",
  5176. "mac",
  5177. "posix",
  5178. "windows"
  5179. ]
  5180. },
  5181. {
  5182. "flaky": false,
  5183. "language": "c",
  5184. "name": "chttp2_socket_pair_with_grpc_trace_ping_pong_streaming_test",
  5185. "platforms": [
  5186. "linux",
  5187. "mac",
  5188. "posix",
  5189. "windows"
  5190. ]
  5191. },
  5192. {
  5193. "flaky": false,
  5194. "language": "c",
  5195. "name": "chttp2_socket_pair_with_grpc_trace_registered_call_test",
  5196. "platforms": [
  5197. "linux",
  5198. "mac",
  5199. "posix",
  5200. "windows"
  5201. ]
  5202. },
  5203. {
  5204. "flaky": false,
  5205. "language": "c",
  5206. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_binary_metadata_and_payload_test",
  5207. "platforms": [
  5208. "linux",
  5209. "mac",
  5210. "posix",
  5211. "windows"
  5212. ]
  5213. },
  5214. {
  5215. "flaky": false,
  5216. "language": "c",
  5217. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_metadata_and_payload_test",
  5218. "platforms": [
  5219. "linux",
  5220. "mac",
  5221. "posix",
  5222. "windows"
  5223. ]
  5224. },
  5225. {
  5226. "flaky": false,
  5227. "language": "c",
  5228. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_payload_test",
  5229. "platforms": [
  5230. "linux",
  5231. "mac",
  5232. "posix",
  5233. "windows"
  5234. ]
  5235. },
  5236. {
  5237. "flaky": false,
  5238. "language": "c",
  5239. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_payload_and_call_creds_test",
  5240. "platforms": [
  5241. "linux",
  5242. "mac",
  5243. "posix",
  5244. "windows"
  5245. ]
  5246. },
  5247. {
  5248. "flaky": false,
  5249. "language": "c",
  5250. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_trailing_metadata_and_payload_test",
  5251. "platforms": [
  5252. "linux",
  5253. "mac",
  5254. "posix",
  5255. "windows"
  5256. ]
  5257. },
  5258. {
  5259. "flaky": false,
  5260. "language": "c",
  5261. "name": "chttp2_socket_pair_with_grpc_trace_request_with_compressed_payload_test",
  5262. "platforms": [
  5263. "linux",
  5264. "mac",
  5265. "posix",
  5266. "windows"
  5267. ]
  5268. },
  5269. {
  5270. "flaky": false,
  5271. "language": "c",
  5272. "name": "chttp2_socket_pair_with_grpc_trace_request_with_flags_test",
  5273. "platforms": [
  5274. "linux",
  5275. "mac",
  5276. "posix",
  5277. "windows"
  5278. ]
  5279. },
  5280. {
  5281. "flaky": false,
  5282. "language": "c",
  5283. "name": "chttp2_socket_pair_with_grpc_trace_request_with_large_metadata_test",
  5284. "platforms": [
  5285. "linux",
  5286. "mac",
  5287. "posix",
  5288. "windows"
  5289. ]
  5290. },
  5291. {
  5292. "flaky": false,
  5293. "language": "c",
  5294. "name": "chttp2_socket_pair_with_grpc_trace_request_with_payload_test",
  5295. "platforms": [
  5296. "linux",
  5297. "mac",
  5298. "posix",
  5299. "windows"
  5300. ]
  5301. },
  5302. {
  5303. "flaky": false,
  5304. "language": "c",
  5305. "name": "chttp2_socket_pair_with_grpc_trace_server_finishes_request_test",
  5306. "platforms": [
  5307. "linux",
  5308. "mac",
  5309. "posix",
  5310. "windows"
  5311. ]
  5312. },
  5313. {
  5314. "flaky": false,
  5315. "language": "c",
  5316. "name": "chttp2_socket_pair_with_grpc_trace_simple_request_test",
  5317. "platforms": [
  5318. "linux",
  5319. "mac",
  5320. "posix",
  5321. "windows"
  5322. ]
  5323. },
  5324. {
  5325. "flaky": false,
  5326. "language": "c",
  5327. "name": "chttp2_socket_pair_with_grpc_trace_simple_request_with_high_initial_sequence_number_test",
  5328. "platforms": [
  5329. "linux",
  5330. "mac",
  5331. "posix",
  5332. "windows"
  5333. ]
  5334. },
  5335. {
  5336. "flaky": false,
  5337. "language": "c",
  5338. "name": "chttp2_fullstack_bad_hostname_unsecure_test",
  5339. "platforms": [
  5340. "linux",
  5341. "mac",
  5342. "posix",
  5343. "windows"
  5344. ]
  5345. },
  5346. {
  5347. "flaky": false,
  5348. "language": "c",
  5349. "name": "chttp2_fullstack_cancel_after_accept_unsecure_test",
  5350. "platforms": [
  5351. "linux",
  5352. "mac",
  5353. "posix",
  5354. "windows"
  5355. ]
  5356. },
  5357. {
  5358. "flaky": false,
  5359. "language": "c",
  5360. "name": "chttp2_fullstack_cancel_after_accept_and_writes_closed_unsecure_test",
  5361. "platforms": [
  5362. "linux",
  5363. "mac",
  5364. "posix",
  5365. "windows"
  5366. ]
  5367. },
  5368. {
  5369. "flaky": false,
  5370. "language": "c",
  5371. "name": "chttp2_fullstack_cancel_after_invoke_unsecure_test",
  5372. "platforms": [
  5373. "linux",
  5374. "mac",
  5375. "posix",
  5376. "windows"
  5377. ]
  5378. },
  5379. {
  5380. "flaky": false,
  5381. "language": "c",
  5382. "name": "chttp2_fullstack_cancel_before_invoke_unsecure_test",
  5383. "platforms": [
  5384. "linux",
  5385. "mac",
  5386. "posix",
  5387. "windows"
  5388. ]
  5389. },
  5390. {
  5391. "flaky": false,
  5392. "language": "c",
  5393. "name": "chttp2_fullstack_cancel_in_a_vacuum_unsecure_test",
  5394. "platforms": [
  5395. "linux",
  5396. "mac",
  5397. "posix",
  5398. "windows"
  5399. ]
  5400. },
  5401. {
  5402. "flaky": false,
  5403. "language": "c",
  5404. "name": "chttp2_fullstack_census_simple_request_unsecure_test",
  5405. "platforms": [
  5406. "linux",
  5407. "mac",
  5408. "posix",
  5409. "windows"
  5410. ]
  5411. },
  5412. {
  5413. "flaky": false,
  5414. "language": "c",
  5415. "name": "chttp2_fullstack_channel_connectivity_unsecure_test",
  5416. "platforms": [
  5417. "linux",
  5418. "mac",
  5419. "posix",
  5420. "windows"
  5421. ]
  5422. },
  5423. {
  5424. "flaky": false,
  5425. "language": "c",
  5426. "name": "chttp2_fullstack_default_host_unsecure_test",
  5427. "platforms": [
  5428. "linux",
  5429. "mac",
  5430. "posix",
  5431. "windows"
  5432. ]
  5433. },
  5434. {
  5435. "flaky": false,
  5436. "language": "c",
  5437. "name": "chttp2_fullstack_disappearing_server_unsecure_test",
  5438. "platforms": [
  5439. "linux",
  5440. "mac",
  5441. "posix",
  5442. "windows"
  5443. ]
  5444. },
  5445. {
  5446. "flaky": false,
  5447. "language": "c",
  5448. "name": "chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  5449. "platforms": [
  5450. "linux",
  5451. "mac",
  5452. "posix",
  5453. "windows"
  5454. ]
  5455. },
  5456. {
  5457. "flaky": false,
  5458. "language": "c",
  5459. "name": "chttp2_fullstack_early_server_shutdown_finishes_tags_unsecure_test",
  5460. "platforms": [
  5461. "linux",
  5462. "mac",
  5463. "posix",
  5464. "windows"
  5465. ]
  5466. },
  5467. {
  5468. "flaky": false,
  5469. "language": "c",
  5470. "name": "chttp2_fullstack_empty_batch_unsecure_test",
  5471. "platforms": [
  5472. "linux",
  5473. "mac",
  5474. "posix",
  5475. "windows"
  5476. ]
  5477. },
  5478. {
  5479. "flaky": false,
  5480. "language": "c",
  5481. "name": "chttp2_fullstack_graceful_server_shutdown_unsecure_test",
  5482. "platforms": [
  5483. "linux",
  5484. "mac",
  5485. "posix",
  5486. "windows"
  5487. ]
  5488. },
  5489. {
  5490. "flaky": false,
  5491. "language": "c",
  5492. "name": "chttp2_fullstack_invoke_large_request_unsecure_test",
  5493. "platforms": [
  5494. "linux",
  5495. "mac",
  5496. "posix",
  5497. "windows"
  5498. ]
  5499. },
  5500. {
  5501. "flaky": false,
  5502. "language": "c",
  5503. "name": "chttp2_fullstack_max_concurrent_streams_unsecure_test",
  5504. "platforms": [
  5505. "linux",
  5506. "mac",
  5507. "posix",
  5508. "windows"
  5509. ]
  5510. },
  5511. {
  5512. "flaky": false,
  5513. "language": "c",
  5514. "name": "chttp2_fullstack_max_message_length_unsecure_test",
  5515. "platforms": [
  5516. "linux",
  5517. "mac",
  5518. "posix",
  5519. "windows"
  5520. ]
  5521. },
  5522. {
  5523. "flaky": false,
  5524. "language": "c",
  5525. "name": "chttp2_fullstack_no_op_unsecure_test",
  5526. "platforms": [
  5527. "linux",
  5528. "mac",
  5529. "posix",
  5530. "windows"
  5531. ]
  5532. },
  5533. {
  5534. "flaky": false,
  5535. "language": "c",
  5536. "name": "chttp2_fullstack_ping_pong_streaming_unsecure_test",
  5537. "platforms": [
  5538. "linux",
  5539. "mac",
  5540. "posix",
  5541. "windows"
  5542. ]
  5543. },
  5544. {
  5545. "flaky": false,
  5546. "language": "c",
  5547. "name": "chttp2_fullstack_registered_call_unsecure_test",
  5548. "platforms": [
  5549. "linux",
  5550. "mac",
  5551. "posix",
  5552. "windows"
  5553. ]
  5554. },
  5555. {
  5556. "flaky": false,
  5557. "language": "c",
  5558. "name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_unsecure_test",
  5559. "platforms": [
  5560. "linux",
  5561. "mac",
  5562. "posix",
  5563. "windows"
  5564. ]
  5565. },
  5566. {
  5567. "flaky": false,
  5568. "language": "c",
  5569. "name": "chttp2_fullstack_request_response_with_metadata_and_payload_unsecure_test",
  5570. "platforms": [
  5571. "linux",
  5572. "mac",
  5573. "posix",
  5574. "windows"
  5575. ]
  5576. },
  5577. {
  5578. "flaky": false,
  5579. "language": "c",
  5580. "name": "chttp2_fullstack_request_response_with_payload_unsecure_test",
  5581. "platforms": [
  5582. "linux",
  5583. "mac",
  5584. "posix",
  5585. "windows"
  5586. ]
  5587. },
  5588. {
  5589. "flaky": false,
  5590. "language": "c",
  5591. "name": "chttp2_fullstack_request_response_with_trailing_metadata_and_payload_unsecure_test",
  5592. "platforms": [
  5593. "linux",
  5594. "mac",
  5595. "posix",
  5596. "windows"
  5597. ]
  5598. },
  5599. {
  5600. "flaky": false,
  5601. "language": "c",
  5602. "name": "chttp2_fullstack_request_with_compressed_payload_unsecure_test",
  5603. "platforms": [
  5604. "linux",
  5605. "mac",
  5606. "posix",
  5607. "windows"
  5608. ]
  5609. },
  5610. {
  5611. "flaky": false,
  5612. "language": "c",
  5613. "name": "chttp2_fullstack_request_with_flags_unsecure_test",
  5614. "platforms": [
  5615. "linux",
  5616. "mac",
  5617. "posix",
  5618. "windows"
  5619. ]
  5620. },
  5621. {
  5622. "flaky": false,
  5623. "language": "c",
  5624. "name": "chttp2_fullstack_request_with_large_metadata_unsecure_test",
  5625. "platforms": [
  5626. "linux",
  5627. "mac",
  5628. "posix",
  5629. "windows"
  5630. ]
  5631. },
  5632. {
  5633. "flaky": false,
  5634. "language": "c",
  5635. "name": "chttp2_fullstack_request_with_payload_unsecure_test",
  5636. "platforms": [
  5637. "linux",
  5638. "mac",
  5639. "posix",
  5640. "windows"
  5641. ]
  5642. },
  5643. {
  5644. "flaky": false,
  5645. "language": "c",
  5646. "name": "chttp2_fullstack_server_finishes_request_unsecure_test",
  5647. "platforms": [
  5648. "linux",
  5649. "mac",
  5650. "posix",
  5651. "windows"
  5652. ]
  5653. },
  5654. {
  5655. "flaky": false,
  5656. "language": "c",
  5657. "name": "chttp2_fullstack_simple_delayed_request_unsecure_test",
  5658. "platforms": [
  5659. "linux",
  5660. "mac",
  5661. "posix",
  5662. "windows"
  5663. ]
  5664. },
  5665. {
  5666. "flaky": false,
  5667. "language": "c",
  5668. "name": "chttp2_fullstack_simple_request_unsecure_test",
  5669. "platforms": [
  5670. "linux",
  5671. "mac",
  5672. "posix",
  5673. "windows"
  5674. ]
  5675. },
  5676. {
  5677. "flaky": false,
  5678. "language": "c",
  5679. "name": "chttp2_fullstack_simple_request_with_high_initial_sequence_number_unsecure_test",
  5680. "platforms": [
  5681. "linux",
  5682. "mac",
  5683. "posix",
  5684. "windows"
  5685. ]
  5686. },
  5687. {
  5688. "flaky": false,
  5689. "language": "c",
  5690. "name": "chttp2_fullstack_compression_bad_hostname_unsecure_test",
  5691. "platforms": [
  5692. "linux",
  5693. "mac",
  5694. "posix",
  5695. "windows"
  5696. ]
  5697. },
  5698. {
  5699. "flaky": false,
  5700. "language": "c",
  5701. "name": "chttp2_fullstack_compression_cancel_after_accept_unsecure_test",
  5702. "platforms": [
  5703. "linux",
  5704. "mac",
  5705. "posix",
  5706. "windows"
  5707. ]
  5708. },
  5709. {
  5710. "flaky": false,
  5711. "language": "c",
  5712. "name": "chttp2_fullstack_compression_cancel_after_accept_and_writes_closed_unsecure_test",
  5713. "platforms": [
  5714. "linux",
  5715. "mac",
  5716. "posix",
  5717. "windows"
  5718. ]
  5719. },
  5720. {
  5721. "flaky": false,
  5722. "language": "c",
  5723. "name": "chttp2_fullstack_compression_cancel_after_invoke_unsecure_test",
  5724. "platforms": [
  5725. "linux",
  5726. "mac",
  5727. "posix",
  5728. "windows"
  5729. ]
  5730. },
  5731. {
  5732. "flaky": false,
  5733. "language": "c",
  5734. "name": "chttp2_fullstack_compression_cancel_before_invoke_unsecure_test",
  5735. "platforms": [
  5736. "linux",
  5737. "mac",
  5738. "posix",
  5739. "windows"
  5740. ]
  5741. },
  5742. {
  5743. "flaky": false,
  5744. "language": "c",
  5745. "name": "chttp2_fullstack_compression_cancel_in_a_vacuum_unsecure_test",
  5746. "platforms": [
  5747. "linux",
  5748. "mac",
  5749. "posix",
  5750. "windows"
  5751. ]
  5752. },
  5753. {
  5754. "flaky": false,
  5755. "language": "c",
  5756. "name": "chttp2_fullstack_compression_census_simple_request_unsecure_test",
  5757. "platforms": [
  5758. "linux",
  5759. "mac",
  5760. "posix",
  5761. "windows"
  5762. ]
  5763. },
  5764. {
  5765. "flaky": false,
  5766. "language": "c",
  5767. "name": "chttp2_fullstack_compression_channel_connectivity_unsecure_test",
  5768. "platforms": [
  5769. "linux",
  5770. "mac",
  5771. "posix",
  5772. "windows"
  5773. ]
  5774. },
  5775. {
  5776. "flaky": false,
  5777. "language": "c",
  5778. "name": "chttp2_fullstack_compression_default_host_unsecure_test",
  5779. "platforms": [
  5780. "linux",
  5781. "mac",
  5782. "posix",
  5783. "windows"
  5784. ]
  5785. },
  5786. {
  5787. "flaky": false,
  5788. "language": "c",
  5789. "name": "chttp2_fullstack_compression_disappearing_server_unsecure_test",
  5790. "platforms": [
  5791. "linux",
  5792. "mac",
  5793. "posix",
  5794. "windows"
  5795. ]
  5796. },
  5797. {
  5798. "flaky": false,
  5799. "language": "c",
  5800. "name": "chttp2_fullstack_compression_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  5801. "platforms": [
  5802. "linux",
  5803. "mac",
  5804. "posix",
  5805. "windows"
  5806. ]
  5807. },
  5808. {
  5809. "flaky": false,
  5810. "language": "c",
  5811. "name": "chttp2_fullstack_compression_early_server_shutdown_finishes_tags_unsecure_test",
  5812. "platforms": [
  5813. "linux",
  5814. "mac",
  5815. "posix",
  5816. "windows"
  5817. ]
  5818. },
  5819. {
  5820. "flaky": false,
  5821. "language": "c",
  5822. "name": "chttp2_fullstack_compression_empty_batch_unsecure_test",
  5823. "platforms": [
  5824. "linux",
  5825. "mac",
  5826. "posix",
  5827. "windows"
  5828. ]
  5829. },
  5830. {
  5831. "flaky": false,
  5832. "language": "c",
  5833. "name": "chttp2_fullstack_compression_graceful_server_shutdown_unsecure_test",
  5834. "platforms": [
  5835. "linux",
  5836. "mac",
  5837. "posix",
  5838. "windows"
  5839. ]
  5840. },
  5841. {
  5842. "flaky": false,
  5843. "language": "c",
  5844. "name": "chttp2_fullstack_compression_invoke_large_request_unsecure_test",
  5845. "platforms": [
  5846. "linux",
  5847. "mac",
  5848. "posix",
  5849. "windows"
  5850. ]
  5851. },
  5852. {
  5853. "flaky": false,
  5854. "language": "c",
  5855. "name": "chttp2_fullstack_compression_max_concurrent_streams_unsecure_test",
  5856. "platforms": [
  5857. "linux",
  5858. "mac",
  5859. "posix",
  5860. "windows"
  5861. ]
  5862. },
  5863. {
  5864. "flaky": false,
  5865. "language": "c",
  5866. "name": "chttp2_fullstack_compression_max_message_length_unsecure_test",
  5867. "platforms": [
  5868. "linux",
  5869. "mac",
  5870. "posix",
  5871. "windows"
  5872. ]
  5873. },
  5874. {
  5875. "flaky": false,
  5876. "language": "c",
  5877. "name": "chttp2_fullstack_compression_no_op_unsecure_test",
  5878. "platforms": [
  5879. "linux",
  5880. "mac",
  5881. "posix",
  5882. "windows"
  5883. ]
  5884. },
  5885. {
  5886. "flaky": false,
  5887. "language": "c",
  5888. "name": "chttp2_fullstack_compression_ping_pong_streaming_unsecure_test",
  5889. "platforms": [
  5890. "linux",
  5891. "mac",
  5892. "posix",
  5893. "windows"
  5894. ]
  5895. },
  5896. {
  5897. "flaky": false,
  5898. "language": "c",
  5899. "name": "chttp2_fullstack_compression_registered_call_unsecure_test",
  5900. "platforms": [
  5901. "linux",
  5902. "mac",
  5903. "posix",
  5904. "windows"
  5905. ]
  5906. },
  5907. {
  5908. "flaky": false,
  5909. "language": "c",
  5910. "name": "chttp2_fullstack_compression_request_response_with_binary_metadata_and_payload_unsecure_test",
  5911. "platforms": [
  5912. "linux",
  5913. "mac",
  5914. "posix",
  5915. "windows"
  5916. ]
  5917. },
  5918. {
  5919. "flaky": false,
  5920. "language": "c",
  5921. "name": "chttp2_fullstack_compression_request_response_with_metadata_and_payload_unsecure_test",
  5922. "platforms": [
  5923. "linux",
  5924. "mac",
  5925. "posix",
  5926. "windows"
  5927. ]
  5928. },
  5929. {
  5930. "flaky": false,
  5931. "language": "c",
  5932. "name": "chttp2_fullstack_compression_request_response_with_payload_unsecure_test",
  5933. "platforms": [
  5934. "linux",
  5935. "mac",
  5936. "posix",
  5937. "windows"
  5938. ]
  5939. },
  5940. {
  5941. "flaky": false,
  5942. "language": "c",
  5943. "name": "chttp2_fullstack_compression_request_response_with_trailing_metadata_and_payload_unsecure_test",
  5944. "platforms": [
  5945. "linux",
  5946. "mac",
  5947. "posix",
  5948. "windows"
  5949. ]
  5950. },
  5951. {
  5952. "flaky": false,
  5953. "language": "c",
  5954. "name": "chttp2_fullstack_compression_request_with_compressed_payload_unsecure_test",
  5955. "platforms": [
  5956. "linux",
  5957. "mac",
  5958. "posix",
  5959. "windows"
  5960. ]
  5961. },
  5962. {
  5963. "flaky": false,
  5964. "language": "c",
  5965. "name": "chttp2_fullstack_compression_request_with_flags_unsecure_test",
  5966. "platforms": [
  5967. "linux",
  5968. "mac",
  5969. "posix",
  5970. "windows"
  5971. ]
  5972. },
  5973. {
  5974. "flaky": false,
  5975. "language": "c",
  5976. "name": "chttp2_fullstack_compression_request_with_large_metadata_unsecure_test",
  5977. "platforms": [
  5978. "linux",
  5979. "mac",
  5980. "posix",
  5981. "windows"
  5982. ]
  5983. },
  5984. {
  5985. "flaky": false,
  5986. "language": "c",
  5987. "name": "chttp2_fullstack_compression_request_with_payload_unsecure_test",
  5988. "platforms": [
  5989. "linux",
  5990. "mac",
  5991. "posix",
  5992. "windows"
  5993. ]
  5994. },
  5995. {
  5996. "flaky": false,
  5997. "language": "c",
  5998. "name": "chttp2_fullstack_compression_server_finishes_request_unsecure_test",
  5999. "platforms": [
  6000. "linux",
  6001. "mac",
  6002. "posix",
  6003. "windows"
  6004. ]
  6005. },
  6006. {
  6007. "flaky": false,
  6008. "language": "c",
  6009. "name": "chttp2_fullstack_compression_simple_delayed_request_unsecure_test",
  6010. "platforms": [
  6011. "linux",
  6012. "mac",
  6013. "posix",
  6014. "windows"
  6015. ]
  6016. },
  6017. {
  6018. "flaky": false,
  6019. "language": "c",
  6020. "name": "chttp2_fullstack_compression_simple_request_unsecure_test",
  6021. "platforms": [
  6022. "linux",
  6023. "mac",
  6024. "posix",
  6025. "windows"
  6026. ]
  6027. },
  6028. {
  6029. "flaky": false,
  6030. "language": "c",
  6031. "name": "chttp2_fullstack_compression_simple_request_with_high_initial_sequence_number_unsecure_test",
  6032. "platforms": [
  6033. "linux",
  6034. "mac",
  6035. "posix",
  6036. "windows"
  6037. ]
  6038. },
  6039. {
  6040. "flaky": false,
  6041. "language": "c",
  6042. "name": "chttp2_fullstack_uds_posix_bad_hostname_unsecure_test",
  6043. "platforms": [
  6044. "linux",
  6045. "mac",
  6046. "posix"
  6047. ]
  6048. },
  6049. {
  6050. "flaky": false,
  6051. "language": "c",
  6052. "name": "chttp2_fullstack_uds_posix_cancel_after_accept_unsecure_test",
  6053. "platforms": [
  6054. "linux",
  6055. "mac",
  6056. "posix"
  6057. ]
  6058. },
  6059. {
  6060. "flaky": false,
  6061. "language": "c",
  6062. "name": "chttp2_fullstack_uds_posix_cancel_after_accept_and_writes_closed_unsecure_test",
  6063. "platforms": [
  6064. "linux",
  6065. "mac",
  6066. "posix"
  6067. ]
  6068. },
  6069. {
  6070. "flaky": false,
  6071. "language": "c",
  6072. "name": "chttp2_fullstack_uds_posix_cancel_after_invoke_unsecure_test",
  6073. "platforms": [
  6074. "linux",
  6075. "mac",
  6076. "posix"
  6077. ]
  6078. },
  6079. {
  6080. "flaky": false,
  6081. "language": "c",
  6082. "name": "chttp2_fullstack_uds_posix_cancel_before_invoke_unsecure_test",
  6083. "platforms": [
  6084. "linux",
  6085. "mac",
  6086. "posix"
  6087. ]
  6088. },
  6089. {
  6090. "flaky": false,
  6091. "language": "c",
  6092. "name": "chttp2_fullstack_uds_posix_cancel_in_a_vacuum_unsecure_test",
  6093. "platforms": [
  6094. "linux",
  6095. "mac",
  6096. "posix"
  6097. ]
  6098. },
  6099. {
  6100. "flaky": false,
  6101. "language": "c",
  6102. "name": "chttp2_fullstack_uds_posix_census_simple_request_unsecure_test",
  6103. "platforms": [
  6104. "linux",
  6105. "mac",
  6106. "posix"
  6107. ]
  6108. },
  6109. {
  6110. "flaky": false,
  6111. "language": "c",
  6112. "name": "chttp2_fullstack_uds_posix_channel_connectivity_unsecure_test",
  6113. "platforms": [
  6114. "linux",
  6115. "mac",
  6116. "posix"
  6117. ]
  6118. },
  6119. {
  6120. "flaky": false,
  6121. "language": "c",
  6122. "name": "chttp2_fullstack_uds_posix_disappearing_server_unsecure_test",
  6123. "platforms": [
  6124. "linux",
  6125. "mac",
  6126. "posix"
  6127. ]
  6128. },
  6129. {
  6130. "flaky": false,
  6131. "language": "c",
  6132. "name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  6133. "platforms": [
  6134. "linux",
  6135. "mac",
  6136. "posix"
  6137. ]
  6138. },
  6139. {
  6140. "flaky": false,
  6141. "language": "c",
  6142. "name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_tags_unsecure_test",
  6143. "platforms": [
  6144. "linux",
  6145. "mac",
  6146. "posix"
  6147. ]
  6148. },
  6149. {
  6150. "flaky": false,
  6151. "language": "c",
  6152. "name": "chttp2_fullstack_uds_posix_empty_batch_unsecure_test",
  6153. "platforms": [
  6154. "linux",
  6155. "mac",
  6156. "posix"
  6157. ]
  6158. },
  6159. {
  6160. "flaky": false,
  6161. "language": "c",
  6162. "name": "chttp2_fullstack_uds_posix_graceful_server_shutdown_unsecure_test",
  6163. "platforms": [
  6164. "linux",
  6165. "mac",
  6166. "posix"
  6167. ]
  6168. },
  6169. {
  6170. "flaky": false,
  6171. "language": "c",
  6172. "name": "chttp2_fullstack_uds_posix_invoke_large_request_unsecure_test",
  6173. "platforms": [
  6174. "linux",
  6175. "mac",
  6176. "posix"
  6177. ]
  6178. },
  6179. {
  6180. "flaky": false,
  6181. "language": "c",
  6182. "name": "chttp2_fullstack_uds_posix_max_concurrent_streams_unsecure_test",
  6183. "platforms": [
  6184. "linux",
  6185. "mac",
  6186. "posix"
  6187. ]
  6188. },
  6189. {
  6190. "flaky": false,
  6191. "language": "c",
  6192. "name": "chttp2_fullstack_uds_posix_max_message_length_unsecure_test",
  6193. "platforms": [
  6194. "linux",
  6195. "mac",
  6196. "posix"
  6197. ]
  6198. },
  6199. {
  6200. "flaky": false,
  6201. "language": "c",
  6202. "name": "chttp2_fullstack_uds_posix_no_op_unsecure_test",
  6203. "platforms": [
  6204. "linux",
  6205. "mac",
  6206. "posix"
  6207. ]
  6208. },
  6209. {
  6210. "flaky": false,
  6211. "language": "c",
  6212. "name": "chttp2_fullstack_uds_posix_ping_pong_streaming_unsecure_test",
  6213. "platforms": [
  6214. "linux",
  6215. "mac",
  6216. "posix"
  6217. ]
  6218. },
  6219. {
  6220. "flaky": false,
  6221. "language": "c",
  6222. "name": "chttp2_fullstack_uds_posix_registered_call_unsecure_test",
  6223. "platforms": [
  6224. "linux",
  6225. "mac",
  6226. "posix"
  6227. ]
  6228. },
  6229. {
  6230. "flaky": false,
  6231. "language": "c",
  6232. "name": "chttp2_fullstack_uds_posix_request_response_with_binary_metadata_and_payload_unsecure_test",
  6233. "platforms": [
  6234. "linux",
  6235. "mac",
  6236. "posix"
  6237. ]
  6238. },
  6239. {
  6240. "flaky": false,
  6241. "language": "c",
  6242. "name": "chttp2_fullstack_uds_posix_request_response_with_metadata_and_payload_unsecure_test",
  6243. "platforms": [
  6244. "linux",
  6245. "mac",
  6246. "posix"
  6247. ]
  6248. },
  6249. {
  6250. "flaky": false,
  6251. "language": "c",
  6252. "name": "chttp2_fullstack_uds_posix_request_response_with_payload_unsecure_test",
  6253. "platforms": [
  6254. "linux",
  6255. "mac",
  6256. "posix"
  6257. ]
  6258. },
  6259. {
  6260. "flaky": false,
  6261. "language": "c",
  6262. "name": "chttp2_fullstack_uds_posix_request_response_with_trailing_metadata_and_payload_unsecure_test",
  6263. "platforms": [
  6264. "linux",
  6265. "mac",
  6266. "posix"
  6267. ]
  6268. },
  6269. {
  6270. "flaky": false,
  6271. "language": "c",
  6272. "name": "chttp2_fullstack_uds_posix_request_with_compressed_payload_unsecure_test",
  6273. "platforms": [
  6274. "linux",
  6275. "mac",
  6276. "posix"
  6277. ]
  6278. },
  6279. {
  6280. "flaky": false,
  6281. "language": "c",
  6282. "name": "chttp2_fullstack_uds_posix_request_with_flags_unsecure_test",
  6283. "platforms": [
  6284. "linux",
  6285. "mac",
  6286. "posix"
  6287. ]
  6288. },
  6289. {
  6290. "flaky": false,
  6291. "language": "c",
  6292. "name": "chttp2_fullstack_uds_posix_request_with_large_metadata_unsecure_test",
  6293. "platforms": [
  6294. "linux",
  6295. "mac",
  6296. "posix"
  6297. ]
  6298. },
  6299. {
  6300. "flaky": false,
  6301. "language": "c",
  6302. "name": "chttp2_fullstack_uds_posix_request_with_payload_unsecure_test",
  6303. "platforms": [
  6304. "linux",
  6305. "mac",
  6306. "posix"
  6307. ]
  6308. },
  6309. {
  6310. "flaky": false,
  6311. "language": "c",
  6312. "name": "chttp2_fullstack_uds_posix_server_finishes_request_unsecure_test",
  6313. "platforms": [
  6314. "linux",
  6315. "mac",
  6316. "posix"
  6317. ]
  6318. },
  6319. {
  6320. "flaky": false,
  6321. "language": "c",
  6322. "name": "chttp2_fullstack_uds_posix_simple_delayed_request_unsecure_test",
  6323. "platforms": [
  6324. "linux",
  6325. "mac",
  6326. "posix"
  6327. ]
  6328. },
  6329. {
  6330. "flaky": false,
  6331. "language": "c",
  6332. "name": "chttp2_fullstack_uds_posix_simple_request_unsecure_test",
  6333. "platforms": [
  6334. "linux",
  6335. "mac",
  6336. "posix"
  6337. ]
  6338. },
  6339. {
  6340. "flaky": false,
  6341. "language": "c",
  6342. "name": "chttp2_fullstack_uds_posix_simple_request_with_high_initial_sequence_number_unsecure_test",
  6343. "platforms": [
  6344. "linux",
  6345. "mac",
  6346. "posix"
  6347. ]
  6348. },
  6349. {
  6350. "flaky": false,
  6351. "language": "c",
  6352. "name": "chttp2_fullstack_uds_posix_with_poll_bad_hostname_unsecure_test",
  6353. "platforms": [
  6354. "linux"
  6355. ]
  6356. },
  6357. {
  6358. "flaky": false,
  6359. "language": "c",
  6360. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_unsecure_test",
  6361. "platforms": [
  6362. "linux"
  6363. ]
  6364. },
  6365. {
  6366. "flaky": false,
  6367. "language": "c",
  6368. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_and_writes_closed_unsecure_test",
  6369. "platforms": [
  6370. "linux"
  6371. ]
  6372. },
  6373. {
  6374. "flaky": false,
  6375. "language": "c",
  6376. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_invoke_unsecure_test",
  6377. "platforms": [
  6378. "linux"
  6379. ]
  6380. },
  6381. {
  6382. "flaky": false,
  6383. "language": "c",
  6384. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_before_invoke_unsecure_test",
  6385. "platforms": [
  6386. "linux"
  6387. ]
  6388. },
  6389. {
  6390. "flaky": false,
  6391. "language": "c",
  6392. "name": "chttp2_fullstack_uds_posix_with_poll_cancel_in_a_vacuum_unsecure_test",
  6393. "platforms": [
  6394. "linux"
  6395. ]
  6396. },
  6397. {
  6398. "flaky": false,
  6399. "language": "c",
  6400. "name": "chttp2_fullstack_uds_posix_with_poll_census_simple_request_unsecure_test",
  6401. "platforms": [
  6402. "linux"
  6403. ]
  6404. },
  6405. {
  6406. "flaky": false,
  6407. "language": "c",
  6408. "name": "chttp2_fullstack_uds_posix_with_poll_channel_connectivity_unsecure_test",
  6409. "platforms": [
  6410. "linux"
  6411. ]
  6412. },
  6413. {
  6414. "flaky": false,
  6415. "language": "c",
  6416. "name": "chttp2_fullstack_uds_posix_with_poll_disappearing_server_unsecure_test",
  6417. "platforms": [
  6418. "linux"
  6419. ]
  6420. },
  6421. {
  6422. "flaky": false,
  6423. "language": "c",
  6424. "name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  6425. "platforms": [
  6426. "linux"
  6427. ]
  6428. },
  6429. {
  6430. "flaky": false,
  6431. "language": "c",
  6432. "name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_tags_unsecure_test",
  6433. "platforms": [
  6434. "linux"
  6435. ]
  6436. },
  6437. {
  6438. "flaky": false,
  6439. "language": "c",
  6440. "name": "chttp2_fullstack_uds_posix_with_poll_empty_batch_unsecure_test",
  6441. "platforms": [
  6442. "linux"
  6443. ]
  6444. },
  6445. {
  6446. "flaky": false,
  6447. "language": "c",
  6448. "name": "chttp2_fullstack_uds_posix_with_poll_graceful_server_shutdown_unsecure_test",
  6449. "platforms": [
  6450. "linux"
  6451. ]
  6452. },
  6453. {
  6454. "flaky": false,
  6455. "language": "c",
  6456. "name": "chttp2_fullstack_uds_posix_with_poll_invoke_large_request_unsecure_test",
  6457. "platforms": [
  6458. "linux"
  6459. ]
  6460. },
  6461. {
  6462. "flaky": false,
  6463. "language": "c",
  6464. "name": "chttp2_fullstack_uds_posix_with_poll_max_concurrent_streams_unsecure_test",
  6465. "platforms": [
  6466. "linux"
  6467. ]
  6468. },
  6469. {
  6470. "flaky": false,
  6471. "language": "c",
  6472. "name": "chttp2_fullstack_uds_posix_with_poll_max_message_length_unsecure_test",
  6473. "platforms": [
  6474. "linux"
  6475. ]
  6476. },
  6477. {
  6478. "flaky": false,
  6479. "language": "c",
  6480. "name": "chttp2_fullstack_uds_posix_with_poll_no_op_unsecure_test",
  6481. "platforms": [
  6482. "linux"
  6483. ]
  6484. },
  6485. {
  6486. "flaky": false,
  6487. "language": "c",
  6488. "name": "chttp2_fullstack_uds_posix_with_poll_ping_pong_streaming_unsecure_test",
  6489. "platforms": [
  6490. "linux"
  6491. ]
  6492. },
  6493. {
  6494. "flaky": false,
  6495. "language": "c",
  6496. "name": "chttp2_fullstack_uds_posix_with_poll_registered_call_unsecure_test",
  6497. "platforms": [
  6498. "linux"
  6499. ]
  6500. },
  6501. {
  6502. "flaky": false,
  6503. "language": "c",
  6504. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_binary_metadata_and_payload_unsecure_test",
  6505. "platforms": [
  6506. "linux"
  6507. ]
  6508. },
  6509. {
  6510. "flaky": false,
  6511. "language": "c",
  6512. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_metadata_and_payload_unsecure_test",
  6513. "platforms": [
  6514. "linux"
  6515. ]
  6516. },
  6517. {
  6518. "flaky": false,
  6519. "language": "c",
  6520. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_unsecure_test",
  6521. "platforms": [
  6522. "linux"
  6523. ]
  6524. },
  6525. {
  6526. "flaky": false,
  6527. "language": "c",
  6528. "name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_trailing_metadata_and_payload_unsecure_test",
  6529. "platforms": [
  6530. "linux"
  6531. ]
  6532. },
  6533. {
  6534. "flaky": false,
  6535. "language": "c",
  6536. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_compressed_payload_unsecure_test",
  6537. "platforms": [
  6538. "linux"
  6539. ]
  6540. },
  6541. {
  6542. "flaky": false,
  6543. "language": "c",
  6544. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_flags_unsecure_test",
  6545. "platforms": [
  6546. "linux"
  6547. ]
  6548. },
  6549. {
  6550. "flaky": false,
  6551. "language": "c",
  6552. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_large_metadata_unsecure_test",
  6553. "platforms": [
  6554. "linux"
  6555. ]
  6556. },
  6557. {
  6558. "flaky": false,
  6559. "language": "c",
  6560. "name": "chttp2_fullstack_uds_posix_with_poll_request_with_payload_unsecure_test",
  6561. "platforms": [
  6562. "linux"
  6563. ]
  6564. },
  6565. {
  6566. "flaky": false,
  6567. "language": "c",
  6568. "name": "chttp2_fullstack_uds_posix_with_poll_server_finishes_request_unsecure_test",
  6569. "platforms": [
  6570. "linux"
  6571. ]
  6572. },
  6573. {
  6574. "flaky": false,
  6575. "language": "c",
  6576. "name": "chttp2_fullstack_uds_posix_with_poll_simple_delayed_request_unsecure_test",
  6577. "platforms": [
  6578. "linux"
  6579. ]
  6580. },
  6581. {
  6582. "flaky": false,
  6583. "language": "c",
  6584. "name": "chttp2_fullstack_uds_posix_with_poll_simple_request_unsecure_test",
  6585. "platforms": [
  6586. "linux"
  6587. ]
  6588. },
  6589. {
  6590. "flaky": false,
  6591. "language": "c",
  6592. "name": "chttp2_fullstack_uds_posix_with_poll_simple_request_with_high_initial_sequence_number_unsecure_test",
  6593. "platforms": [
  6594. "linux"
  6595. ]
  6596. },
  6597. {
  6598. "flaky": false,
  6599. "language": "c",
  6600. "name": "chttp2_fullstack_with_poll_bad_hostname_unsecure_test",
  6601. "platforms": [
  6602. "linux"
  6603. ]
  6604. },
  6605. {
  6606. "flaky": false,
  6607. "language": "c",
  6608. "name": "chttp2_fullstack_with_poll_cancel_after_accept_unsecure_test",
  6609. "platforms": [
  6610. "linux"
  6611. ]
  6612. },
  6613. {
  6614. "flaky": false,
  6615. "language": "c",
  6616. "name": "chttp2_fullstack_with_poll_cancel_after_accept_and_writes_closed_unsecure_test",
  6617. "platforms": [
  6618. "linux"
  6619. ]
  6620. },
  6621. {
  6622. "flaky": false,
  6623. "language": "c",
  6624. "name": "chttp2_fullstack_with_poll_cancel_after_invoke_unsecure_test",
  6625. "platforms": [
  6626. "linux"
  6627. ]
  6628. },
  6629. {
  6630. "flaky": false,
  6631. "language": "c",
  6632. "name": "chttp2_fullstack_with_poll_cancel_before_invoke_unsecure_test",
  6633. "platforms": [
  6634. "linux"
  6635. ]
  6636. },
  6637. {
  6638. "flaky": false,
  6639. "language": "c",
  6640. "name": "chttp2_fullstack_with_poll_cancel_in_a_vacuum_unsecure_test",
  6641. "platforms": [
  6642. "linux"
  6643. ]
  6644. },
  6645. {
  6646. "flaky": false,
  6647. "language": "c",
  6648. "name": "chttp2_fullstack_with_poll_census_simple_request_unsecure_test",
  6649. "platforms": [
  6650. "linux"
  6651. ]
  6652. },
  6653. {
  6654. "flaky": false,
  6655. "language": "c",
  6656. "name": "chttp2_fullstack_with_poll_channel_connectivity_unsecure_test",
  6657. "platforms": [
  6658. "linux"
  6659. ]
  6660. },
  6661. {
  6662. "flaky": false,
  6663. "language": "c",
  6664. "name": "chttp2_fullstack_with_poll_default_host_unsecure_test",
  6665. "platforms": [
  6666. "linux"
  6667. ]
  6668. },
  6669. {
  6670. "flaky": false,
  6671. "language": "c",
  6672. "name": "chttp2_fullstack_with_poll_disappearing_server_unsecure_test",
  6673. "platforms": [
  6674. "linux"
  6675. ]
  6676. },
  6677. {
  6678. "flaky": false,
  6679. "language": "c",
  6680. "name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  6681. "platforms": [
  6682. "linux"
  6683. ]
  6684. },
  6685. {
  6686. "flaky": false,
  6687. "language": "c",
  6688. "name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_tags_unsecure_test",
  6689. "platforms": [
  6690. "linux"
  6691. ]
  6692. },
  6693. {
  6694. "flaky": false,
  6695. "language": "c",
  6696. "name": "chttp2_fullstack_with_poll_empty_batch_unsecure_test",
  6697. "platforms": [
  6698. "linux"
  6699. ]
  6700. },
  6701. {
  6702. "flaky": false,
  6703. "language": "c",
  6704. "name": "chttp2_fullstack_with_poll_graceful_server_shutdown_unsecure_test",
  6705. "platforms": [
  6706. "linux"
  6707. ]
  6708. },
  6709. {
  6710. "flaky": false,
  6711. "language": "c",
  6712. "name": "chttp2_fullstack_with_poll_invoke_large_request_unsecure_test",
  6713. "platforms": [
  6714. "linux"
  6715. ]
  6716. },
  6717. {
  6718. "flaky": false,
  6719. "language": "c",
  6720. "name": "chttp2_fullstack_with_poll_max_concurrent_streams_unsecure_test",
  6721. "platforms": [
  6722. "linux"
  6723. ]
  6724. },
  6725. {
  6726. "flaky": false,
  6727. "language": "c",
  6728. "name": "chttp2_fullstack_with_poll_max_message_length_unsecure_test",
  6729. "platforms": [
  6730. "linux"
  6731. ]
  6732. },
  6733. {
  6734. "flaky": false,
  6735. "language": "c",
  6736. "name": "chttp2_fullstack_with_poll_no_op_unsecure_test",
  6737. "platforms": [
  6738. "linux"
  6739. ]
  6740. },
  6741. {
  6742. "flaky": false,
  6743. "language": "c",
  6744. "name": "chttp2_fullstack_with_poll_ping_pong_streaming_unsecure_test",
  6745. "platforms": [
  6746. "linux"
  6747. ]
  6748. },
  6749. {
  6750. "flaky": false,
  6751. "language": "c",
  6752. "name": "chttp2_fullstack_with_poll_registered_call_unsecure_test",
  6753. "platforms": [
  6754. "linux"
  6755. ]
  6756. },
  6757. {
  6758. "flaky": false,
  6759. "language": "c",
  6760. "name": "chttp2_fullstack_with_poll_request_response_with_binary_metadata_and_payload_unsecure_test",
  6761. "platforms": [
  6762. "linux"
  6763. ]
  6764. },
  6765. {
  6766. "flaky": false,
  6767. "language": "c",
  6768. "name": "chttp2_fullstack_with_poll_request_response_with_metadata_and_payload_unsecure_test",
  6769. "platforms": [
  6770. "linux"
  6771. ]
  6772. },
  6773. {
  6774. "flaky": false,
  6775. "language": "c",
  6776. "name": "chttp2_fullstack_with_poll_request_response_with_payload_unsecure_test",
  6777. "platforms": [
  6778. "linux"
  6779. ]
  6780. },
  6781. {
  6782. "flaky": false,
  6783. "language": "c",
  6784. "name": "chttp2_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_unsecure_test",
  6785. "platforms": [
  6786. "linux"
  6787. ]
  6788. },
  6789. {
  6790. "flaky": false,
  6791. "language": "c",
  6792. "name": "chttp2_fullstack_with_poll_request_with_compressed_payload_unsecure_test",
  6793. "platforms": [
  6794. "linux"
  6795. ]
  6796. },
  6797. {
  6798. "flaky": false,
  6799. "language": "c",
  6800. "name": "chttp2_fullstack_with_poll_request_with_flags_unsecure_test",
  6801. "platforms": [
  6802. "linux"
  6803. ]
  6804. },
  6805. {
  6806. "flaky": false,
  6807. "language": "c",
  6808. "name": "chttp2_fullstack_with_poll_request_with_large_metadata_unsecure_test",
  6809. "platforms": [
  6810. "linux"
  6811. ]
  6812. },
  6813. {
  6814. "flaky": false,
  6815. "language": "c",
  6816. "name": "chttp2_fullstack_with_poll_request_with_payload_unsecure_test",
  6817. "platforms": [
  6818. "linux"
  6819. ]
  6820. },
  6821. {
  6822. "flaky": false,
  6823. "language": "c",
  6824. "name": "chttp2_fullstack_with_poll_server_finishes_request_unsecure_test",
  6825. "platforms": [
  6826. "linux"
  6827. ]
  6828. },
  6829. {
  6830. "flaky": false,
  6831. "language": "c",
  6832. "name": "chttp2_fullstack_with_poll_simple_delayed_request_unsecure_test",
  6833. "platforms": [
  6834. "linux"
  6835. ]
  6836. },
  6837. {
  6838. "flaky": false,
  6839. "language": "c",
  6840. "name": "chttp2_fullstack_with_poll_simple_request_unsecure_test",
  6841. "platforms": [
  6842. "linux"
  6843. ]
  6844. },
  6845. {
  6846. "flaky": false,
  6847. "language": "c",
  6848. "name": "chttp2_fullstack_with_poll_simple_request_with_high_initial_sequence_number_unsecure_test",
  6849. "platforms": [
  6850. "linux"
  6851. ]
  6852. },
  6853. {
  6854. "flaky": false,
  6855. "language": "c",
  6856. "name": "chttp2_fullstack_with_proxy_bad_hostname_unsecure_test",
  6857. "platforms": [
  6858. "linux",
  6859. "mac",
  6860. "posix",
  6861. "windows"
  6862. ]
  6863. },
  6864. {
  6865. "flaky": false,
  6866. "language": "c",
  6867. "name": "chttp2_fullstack_with_proxy_cancel_after_accept_unsecure_test",
  6868. "platforms": [
  6869. "linux",
  6870. "mac",
  6871. "posix",
  6872. "windows"
  6873. ]
  6874. },
  6875. {
  6876. "flaky": false,
  6877. "language": "c",
  6878. "name": "chttp2_fullstack_with_proxy_cancel_after_accept_and_writes_closed_unsecure_test",
  6879. "platforms": [
  6880. "linux",
  6881. "mac",
  6882. "posix",
  6883. "windows"
  6884. ]
  6885. },
  6886. {
  6887. "flaky": false,
  6888. "language": "c",
  6889. "name": "chttp2_fullstack_with_proxy_cancel_after_invoke_unsecure_test",
  6890. "platforms": [
  6891. "linux",
  6892. "mac",
  6893. "posix",
  6894. "windows"
  6895. ]
  6896. },
  6897. {
  6898. "flaky": false,
  6899. "language": "c",
  6900. "name": "chttp2_fullstack_with_proxy_cancel_before_invoke_unsecure_test",
  6901. "platforms": [
  6902. "linux",
  6903. "mac",
  6904. "posix",
  6905. "windows"
  6906. ]
  6907. },
  6908. {
  6909. "flaky": false,
  6910. "language": "c",
  6911. "name": "chttp2_fullstack_with_proxy_cancel_in_a_vacuum_unsecure_test",
  6912. "platforms": [
  6913. "linux",
  6914. "mac",
  6915. "posix",
  6916. "windows"
  6917. ]
  6918. },
  6919. {
  6920. "flaky": false,
  6921. "language": "c",
  6922. "name": "chttp2_fullstack_with_proxy_census_simple_request_unsecure_test",
  6923. "platforms": [
  6924. "linux",
  6925. "mac",
  6926. "posix",
  6927. "windows"
  6928. ]
  6929. },
  6930. {
  6931. "flaky": false,
  6932. "language": "c",
  6933. "name": "chttp2_fullstack_with_proxy_default_host_unsecure_test",
  6934. "platforms": [
  6935. "linux",
  6936. "mac",
  6937. "posix",
  6938. "windows"
  6939. ]
  6940. },
  6941. {
  6942. "flaky": false,
  6943. "language": "c",
  6944. "name": "chttp2_fullstack_with_proxy_disappearing_server_unsecure_test",
  6945. "platforms": [
  6946. "linux",
  6947. "mac",
  6948. "posix",
  6949. "windows"
  6950. ]
  6951. },
  6952. {
  6953. "flaky": false,
  6954. "language": "c",
  6955. "name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  6956. "platforms": [
  6957. "linux",
  6958. "mac",
  6959. "posix",
  6960. "windows"
  6961. ]
  6962. },
  6963. {
  6964. "flaky": false,
  6965. "language": "c",
  6966. "name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_tags_unsecure_test",
  6967. "platforms": [
  6968. "linux",
  6969. "mac",
  6970. "posix",
  6971. "windows"
  6972. ]
  6973. },
  6974. {
  6975. "flaky": false,
  6976. "language": "c",
  6977. "name": "chttp2_fullstack_with_proxy_empty_batch_unsecure_test",
  6978. "platforms": [
  6979. "linux",
  6980. "mac",
  6981. "posix",
  6982. "windows"
  6983. ]
  6984. },
  6985. {
  6986. "flaky": false,
  6987. "language": "c",
  6988. "name": "chttp2_fullstack_with_proxy_graceful_server_shutdown_unsecure_test",
  6989. "platforms": [
  6990. "linux",
  6991. "mac",
  6992. "posix",
  6993. "windows"
  6994. ]
  6995. },
  6996. {
  6997. "flaky": false,
  6998. "language": "c",
  6999. "name": "chttp2_fullstack_with_proxy_invoke_large_request_unsecure_test",
  7000. "platforms": [
  7001. "linux",
  7002. "mac",
  7003. "posix",
  7004. "windows"
  7005. ]
  7006. },
  7007. {
  7008. "flaky": false,
  7009. "language": "c",
  7010. "name": "chttp2_fullstack_with_proxy_max_message_length_unsecure_test",
  7011. "platforms": [
  7012. "linux",
  7013. "mac",
  7014. "posix",
  7015. "windows"
  7016. ]
  7017. },
  7018. {
  7019. "flaky": false,
  7020. "language": "c",
  7021. "name": "chttp2_fullstack_with_proxy_no_op_unsecure_test",
  7022. "platforms": [
  7023. "linux",
  7024. "mac",
  7025. "posix",
  7026. "windows"
  7027. ]
  7028. },
  7029. {
  7030. "flaky": false,
  7031. "language": "c",
  7032. "name": "chttp2_fullstack_with_proxy_ping_pong_streaming_unsecure_test",
  7033. "platforms": [
  7034. "linux",
  7035. "mac",
  7036. "posix",
  7037. "windows"
  7038. ]
  7039. },
  7040. {
  7041. "flaky": false,
  7042. "language": "c",
  7043. "name": "chttp2_fullstack_with_proxy_registered_call_unsecure_test",
  7044. "platforms": [
  7045. "linux",
  7046. "mac",
  7047. "posix",
  7048. "windows"
  7049. ]
  7050. },
  7051. {
  7052. "flaky": false,
  7053. "language": "c",
  7054. "name": "chttp2_fullstack_with_proxy_request_response_with_binary_metadata_and_payload_unsecure_test",
  7055. "platforms": [
  7056. "linux",
  7057. "mac",
  7058. "posix",
  7059. "windows"
  7060. ]
  7061. },
  7062. {
  7063. "flaky": false,
  7064. "language": "c",
  7065. "name": "chttp2_fullstack_with_proxy_request_response_with_metadata_and_payload_unsecure_test",
  7066. "platforms": [
  7067. "linux",
  7068. "mac",
  7069. "posix",
  7070. "windows"
  7071. ]
  7072. },
  7073. {
  7074. "flaky": false,
  7075. "language": "c",
  7076. "name": "chttp2_fullstack_with_proxy_request_response_with_payload_unsecure_test",
  7077. "platforms": [
  7078. "linux",
  7079. "mac",
  7080. "posix",
  7081. "windows"
  7082. ]
  7083. },
  7084. {
  7085. "flaky": false,
  7086. "language": "c",
  7087. "name": "chttp2_fullstack_with_proxy_request_response_with_trailing_metadata_and_payload_unsecure_test",
  7088. "platforms": [
  7089. "linux",
  7090. "mac",
  7091. "posix",
  7092. "windows"
  7093. ]
  7094. },
  7095. {
  7096. "flaky": false,
  7097. "language": "c",
  7098. "name": "chttp2_fullstack_with_proxy_request_with_large_metadata_unsecure_test",
  7099. "platforms": [
  7100. "linux",
  7101. "mac",
  7102. "posix",
  7103. "windows"
  7104. ]
  7105. },
  7106. {
  7107. "flaky": false,
  7108. "language": "c",
  7109. "name": "chttp2_fullstack_with_proxy_request_with_payload_unsecure_test",
  7110. "platforms": [
  7111. "linux",
  7112. "mac",
  7113. "posix",
  7114. "windows"
  7115. ]
  7116. },
  7117. {
  7118. "flaky": false,
  7119. "language": "c",
  7120. "name": "chttp2_fullstack_with_proxy_server_finishes_request_unsecure_test",
  7121. "platforms": [
  7122. "linux",
  7123. "mac",
  7124. "posix",
  7125. "windows"
  7126. ]
  7127. },
  7128. {
  7129. "flaky": false,
  7130. "language": "c",
  7131. "name": "chttp2_fullstack_with_proxy_simple_delayed_request_unsecure_test",
  7132. "platforms": [
  7133. "linux",
  7134. "mac",
  7135. "posix",
  7136. "windows"
  7137. ]
  7138. },
  7139. {
  7140. "flaky": false,
  7141. "language": "c",
  7142. "name": "chttp2_fullstack_with_proxy_simple_request_unsecure_test",
  7143. "platforms": [
  7144. "linux",
  7145. "mac",
  7146. "posix",
  7147. "windows"
  7148. ]
  7149. },
  7150. {
  7151. "flaky": false,
  7152. "language": "c",
  7153. "name": "chttp2_fullstack_with_proxy_simple_request_with_high_initial_sequence_number_unsecure_test",
  7154. "platforms": [
  7155. "linux",
  7156. "mac",
  7157. "posix",
  7158. "windows"
  7159. ]
  7160. },
  7161. {
  7162. "flaky": false,
  7163. "language": "c",
  7164. "name": "chttp2_socket_pair_bad_hostname_unsecure_test",
  7165. "platforms": [
  7166. "linux",
  7167. "mac",
  7168. "posix",
  7169. "windows"
  7170. ]
  7171. },
  7172. {
  7173. "flaky": false,
  7174. "language": "c",
  7175. "name": "chttp2_socket_pair_cancel_after_accept_unsecure_test",
  7176. "platforms": [
  7177. "linux",
  7178. "mac",
  7179. "posix",
  7180. "windows"
  7181. ]
  7182. },
  7183. {
  7184. "flaky": false,
  7185. "language": "c",
  7186. "name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_unsecure_test",
  7187. "platforms": [
  7188. "linux",
  7189. "mac",
  7190. "posix",
  7191. "windows"
  7192. ]
  7193. },
  7194. {
  7195. "flaky": false,
  7196. "language": "c",
  7197. "name": "chttp2_socket_pair_cancel_after_invoke_unsecure_test",
  7198. "platforms": [
  7199. "linux",
  7200. "mac",
  7201. "posix",
  7202. "windows"
  7203. ]
  7204. },
  7205. {
  7206. "flaky": false,
  7207. "language": "c",
  7208. "name": "chttp2_socket_pair_cancel_before_invoke_unsecure_test",
  7209. "platforms": [
  7210. "linux",
  7211. "mac",
  7212. "posix",
  7213. "windows"
  7214. ]
  7215. },
  7216. {
  7217. "flaky": false,
  7218. "language": "c",
  7219. "name": "chttp2_socket_pair_cancel_in_a_vacuum_unsecure_test",
  7220. "platforms": [
  7221. "linux",
  7222. "mac",
  7223. "posix",
  7224. "windows"
  7225. ]
  7226. },
  7227. {
  7228. "flaky": false,
  7229. "language": "c",
  7230. "name": "chttp2_socket_pair_census_simple_request_unsecure_test",
  7231. "platforms": [
  7232. "linux",
  7233. "mac",
  7234. "posix",
  7235. "windows"
  7236. ]
  7237. },
  7238. {
  7239. "flaky": false,
  7240. "language": "c",
  7241. "name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  7242. "platforms": [
  7243. "linux",
  7244. "mac",
  7245. "posix",
  7246. "windows"
  7247. ]
  7248. },
  7249. {
  7250. "flaky": false,
  7251. "language": "c",
  7252. "name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_unsecure_test",
  7253. "platforms": [
  7254. "linux",
  7255. "mac",
  7256. "posix",
  7257. "windows"
  7258. ]
  7259. },
  7260. {
  7261. "flaky": false,
  7262. "language": "c",
  7263. "name": "chttp2_socket_pair_empty_batch_unsecure_test",
  7264. "platforms": [
  7265. "linux",
  7266. "mac",
  7267. "posix",
  7268. "windows"
  7269. ]
  7270. },
  7271. {
  7272. "flaky": false,
  7273. "language": "c",
  7274. "name": "chttp2_socket_pair_graceful_server_shutdown_unsecure_test",
  7275. "platforms": [
  7276. "linux",
  7277. "mac",
  7278. "posix",
  7279. "windows"
  7280. ]
  7281. },
  7282. {
  7283. "flaky": false,
  7284. "language": "c",
  7285. "name": "chttp2_socket_pair_invoke_large_request_unsecure_test",
  7286. "platforms": [
  7287. "linux",
  7288. "mac",
  7289. "posix",
  7290. "windows"
  7291. ]
  7292. },
  7293. {
  7294. "flaky": false,
  7295. "language": "c",
  7296. "name": "chttp2_socket_pair_max_concurrent_streams_unsecure_test",
  7297. "platforms": [
  7298. "linux",
  7299. "mac",
  7300. "posix",
  7301. "windows"
  7302. ]
  7303. },
  7304. {
  7305. "flaky": false,
  7306. "language": "c",
  7307. "name": "chttp2_socket_pair_max_message_length_unsecure_test",
  7308. "platforms": [
  7309. "linux",
  7310. "mac",
  7311. "posix",
  7312. "windows"
  7313. ]
  7314. },
  7315. {
  7316. "flaky": false,
  7317. "language": "c",
  7318. "name": "chttp2_socket_pair_no_op_unsecure_test",
  7319. "platforms": [
  7320. "linux",
  7321. "mac",
  7322. "posix",
  7323. "windows"
  7324. ]
  7325. },
  7326. {
  7327. "flaky": false,
  7328. "language": "c",
  7329. "name": "chttp2_socket_pair_ping_pong_streaming_unsecure_test",
  7330. "platforms": [
  7331. "linux",
  7332. "mac",
  7333. "posix",
  7334. "windows"
  7335. ]
  7336. },
  7337. {
  7338. "flaky": false,
  7339. "language": "c",
  7340. "name": "chttp2_socket_pair_registered_call_unsecure_test",
  7341. "platforms": [
  7342. "linux",
  7343. "mac",
  7344. "posix",
  7345. "windows"
  7346. ]
  7347. },
  7348. {
  7349. "flaky": false,
  7350. "language": "c",
  7351. "name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_unsecure_test",
  7352. "platforms": [
  7353. "linux",
  7354. "mac",
  7355. "posix",
  7356. "windows"
  7357. ]
  7358. },
  7359. {
  7360. "flaky": false,
  7361. "language": "c",
  7362. "name": "chttp2_socket_pair_request_response_with_metadata_and_payload_unsecure_test",
  7363. "platforms": [
  7364. "linux",
  7365. "mac",
  7366. "posix",
  7367. "windows"
  7368. ]
  7369. },
  7370. {
  7371. "flaky": false,
  7372. "language": "c",
  7373. "name": "chttp2_socket_pair_request_response_with_payload_unsecure_test",
  7374. "platforms": [
  7375. "linux",
  7376. "mac",
  7377. "posix",
  7378. "windows"
  7379. ]
  7380. },
  7381. {
  7382. "flaky": false,
  7383. "language": "c",
  7384. "name": "chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_unsecure_test",
  7385. "platforms": [
  7386. "linux",
  7387. "mac",
  7388. "posix",
  7389. "windows"
  7390. ]
  7391. },
  7392. {
  7393. "flaky": false,
  7394. "language": "c",
  7395. "name": "chttp2_socket_pair_request_with_compressed_payload_unsecure_test",
  7396. "platforms": [
  7397. "linux",
  7398. "mac",
  7399. "posix",
  7400. "windows"
  7401. ]
  7402. },
  7403. {
  7404. "flaky": false,
  7405. "language": "c",
  7406. "name": "chttp2_socket_pair_request_with_flags_unsecure_test",
  7407. "platforms": [
  7408. "linux",
  7409. "mac",
  7410. "posix",
  7411. "windows"
  7412. ]
  7413. },
  7414. {
  7415. "flaky": false,
  7416. "language": "c",
  7417. "name": "chttp2_socket_pair_request_with_large_metadata_unsecure_test",
  7418. "platforms": [
  7419. "linux",
  7420. "mac",
  7421. "posix",
  7422. "windows"
  7423. ]
  7424. },
  7425. {
  7426. "flaky": false,
  7427. "language": "c",
  7428. "name": "chttp2_socket_pair_request_with_payload_unsecure_test",
  7429. "platforms": [
  7430. "linux",
  7431. "mac",
  7432. "posix",
  7433. "windows"
  7434. ]
  7435. },
  7436. {
  7437. "flaky": false,
  7438. "language": "c",
  7439. "name": "chttp2_socket_pair_server_finishes_request_unsecure_test",
  7440. "platforms": [
  7441. "linux",
  7442. "mac",
  7443. "posix",
  7444. "windows"
  7445. ]
  7446. },
  7447. {
  7448. "flaky": false,
  7449. "language": "c",
  7450. "name": "chttp2_socket_pair_simple_request_unsecure_test",
  7451. "platforms": [
  7452. "linux",
  7453. "mac",
  7454. "posix",
  7455. "windows"
  7456. ]
  7457. },
  7458. {
  7459. "flaky": false,
  7460. "language": "c",
  7461. "name": "chttp2_socket_pair_simple_request_with_high_initial_sequence_number_unsecure_test",
  7462. "platforms": [
  7463. "linux",
  7464. "mac",
  7465. "posix",
  7466. "windows"
  7467. ]
  7468. },
  7469. {
  7470. "flaky": false,
  7471. "language": "c",
  7472. "name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_unsecure_test",
  7473. "platforms": [
  7474. "linux",
  7475. "mac",
  7476. "posix",
  7477. "windows"
  7478. ]
  7479. },
  7480. {
  7481. "flaky": false,
  7482. "language": "c",
  7483. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_unsecure_test",
  7484. "platforms": [
  7485. "linux",
  7486. "mac",
  7487. "posix",
  7488. "windows"
  7489. ]
  7490. },
  7491. {
  7492. "flaky": false,
  7493. "language": "c",
  7494. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_unsecure_test",
  7495. "platforms": [
  7496. "linux",
  7497. "mac",
  7498. "posix",
  7499. "windows"
  7500. ]
  7501. },
  7502. {
  7503. "flaky": false,
  7504. "language": "c",
  7505. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_unsecure_test",
  7506. "platforms": [
  7507. "linux",
  7508. "mac",
  7509. "posix",
  7510. "windows"
  7511. ]
  7512. },
  7513. {
  7514. "flaky": false,
  7515. "language": "c",
  7516. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_unsecure_test",
  7517. "platforms": [
  7518. "linux",
  7519. "mac",
  7520. "posix",
  7521. "windows"
  7522. ]
  7523. },
  7524. {
  7525. "flaky": false,
  7526. "language": "c",
  7527. "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_unsecure_test",
  7528. "platforms": [
  7529. "linux",
  7530. "mac",
  7531. "posix",
  7532. "windows"
  7533. ]
  7534. },
  7535. {
  7536. "flaky": false,
  7537. "language": "c",
  7538. "name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_unsecure_test",
  7539. "platforms": [
  7540. "linux",
  7541. "mac",
  7542. "posix",
  7543. "windows"
  7544. ]
  7545. },
  7546. {
  7547. "flaky": false,
  7548. "language": "c",
  7549. "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  7550. "platforms": [
  7551. "linux",
  7552. "mac",
  7553. "posix",
  7554. "windows"
  7555. ]
  7556. },
  7557. {
  7558. "flaky": false,
  7559. "language": "c",
  7560. "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_unsecure_test",
  7561. "platforms": [
  7562. "linux",
  7563. "mac",
  7564. "posix",
  7565. "windows"
  7566. ]
  7567. },
  7568. {
  7569. "flaky": false,
  7570. "language": "c",
  7571. "name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_unsecure_test",
  7572. "platforms": [
  7573. "linux",
  7574. "mac",
  7575. "posix",
  7576. "windows"
  7577. ]
  7578. },
  7579. {
  7580. "flaky": false,
  7581. "language": "c",
  7582. "name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_unsecure_test",
  7583. "platforms": [
  7584. "linux",
  7585. "mac",
  7586. "posix",
  7587. "windows"
  7588. ]
  7589. },
  7590. {
  7591. "flaky": false,
  7592. "language": "c",
  7593. "name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_unsecure_test",
  7594. "platforms": [
  7595. "linux",
  7596. "mac",
  7597. "posix",
  7598. "windows"
  7599. ]
  7600. },
  7601. {
  7602. "flaky": false,
  7603. "language": "c",
  7604. "name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_unsecure_test",
  7605. "platforms": [
  7606. "linux",
  7607. "mac",
  7608. "posix",
  7609. "windows"
  7610. ]
  7611. },
  7612. {
  7613. "flaky": false,
  7614. "language": "c",
  7615. "name": "chttp2_socket_pair_one_byte_at_a_time_max_message_length_unsecure_test",
  7616. "platforms": [
  7617. "linux",
  7618. "mac",
  7619. "posix",
  7620. "windows"
  7621. ]
  7622. },
  7623. {
  7624. "flaky": false,
  7625. "language": "c",
  7626. "name": "chttp2_socket_pair_one_byte_at_a_time_no_op_unsecure_test",
  7627. "platforms": [
  7628. "linux",
  7629. "mac",
  7630. "posix",
  7631. "windows"
  7632. ]
  7633. },
  7634. {
  7635. "flaky": false,
  7636. "language": "c",
  7637. "name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_unsecure_test",
  7638. "platforms": [
  7639. "linux",
  7640. "mac",
  7641. "posix",
  7642. "windows"
  7643. ]
  7644. },
  7645. {
  7646. "flaky": false,
  7647. "language": "c",
  7648. "name": "chttp2_socket_pair_one_byte_at_a_time_registered_call_unsecure_test",
  7649. "platforms": [
  7650. "linux",
  7651. "mac",
  7652. "posix",
  7653. "windows"
  7654. ]
  7655. },
  7656. {
  7657. "flaky": false,
  7658. "language": "c",
  7659. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_unsecure_test",
  7660. "platforms": [
  7661. "linux",
  7662. "mac",
  7663. "posix",
  7664. "windows"
  7665. ]
  7666. },
  7667. {
  7668. "flaky": false,
  7669. "language": "c",
  7670. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_unsecure_test",
  7671. "platforms": [
  7672. "linux",
  7673. "mac",
  7674. "posix",
  7675. "windows"
  7676. ]
  7677. },
  7678. {
  7679. "flaky": false,
  7680. "language": "c",
  7681. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_unsecure_test",
  7682. "platforms": [
  7683. "linux",
  7684. "mac",
  7685. "posix",
  7686. "windows"
  7687. ]
  7688. },
  7689. {
  7690. "flaky": false,
  7691. "language": "c",
  7692. "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_unsecure_test",
  7693. "platforms": [
  7694. "linux",
  7695. "mac",
  7696. "posix",
  7697. "windows"
  7698. ]
  7699. },
  7700. {
  7701. "flaky": false,
  7702. "language": "c",
  7703. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_compressed_payload_unsecure_test",
  7704. "platforms": [
  7705. "linux",
  7706. "mac",
  7707. "posix",
  7708. "windows"
  7709. ]
  7710. },
  7711. {
  7712. "flaky": false,
  7713. "language": "c",
  7714. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_flags_unsecure_test",
  7715. "platforms": [
  7716. "linux",
  7717. "mac",
  7718. "posix",
  7719. "windows"
  7720. ]
  7721. },
  7722. {
  7723. "flaky": false,
  7724. "language": "c",
  7725. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_unsecure_test",
  7726. "platforms": [
  7727. "linux",
  7728. "mac",
  7729. "posix",
  7730. "windows"
  7731. ]
  7732. },
  7733. {
  7734. "flaky": false,
  7735. "language": "c",
  7736. "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_unsecure_test",
  7737. "platforms": [
  7738. "linux",
  7739. "mac",
  7740. "posix",
  7741. "windows"
  7742. ]
  7743. },
  7744. {
  7745. "flaky": false,
  7746. "language": "c",
  7747. "name": "chttp2_socket_pair_one_byte_at_a_time_server_finishes_request_unsecure_test",
  7748. "platforms": [
  7749. "linux",
  7750. "mac",
  7751. "posix",
  7752. "windows"
  7753. ]
  7754. },
  7755. {
  7756. "flaky": false,
  7757. "language": "c",
  7758. "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_unsecure_test",
  7759. "platforms": [
  7760. "linux",
  7761. "mac",
  7762. "posix",
  7763. "windows"
  7764. ]
  7765. },
  7766. {
  7767. "flaky": false,
  7768. "language": "c",
  7769. "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_with_high_initial_sequence_number_unsecure_test",
  7770. "platforms": [
  7771. "linux",
  7772. "mac",
  7773. "posix",
  7774. "windows"
  7775. ]
  7776. },
  7777. {
  7778. "flaky": false,
  7779. "language": "c",
  7780. "name": "chttp2_socket_pair_with_grpc_trace_bad_hostname_unsecure_test",
  7781. "platforms": [
  7782. "linux",
  7783. "mac",
  7784. "posix",
  7785. "windows"
  7786. ]
  7787. },
  7788. {
  7789. "flaky": false,
  7790. "language": "c",
  7791. "name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_unsecure_test",
  7792. "platforms": [
  7793. "linux",
  7794. "mac",
  7795. "posix",
  7796. "windows"
  7797. ]
  7798. },
  7799. {
  7800. "flaky": false,
  7801. "language": "c",
  7802. "name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_and_writes_closed_unsecure_test",
  7803. "platforms": [
  7804. "linux",
  7805. "mac",
  7806. "posix",
  7807. "windows"
  7808. ]
  7809. },
  7810. {
  7811. "flaky": false,
  7812. "language": "c",
  7813. "name": "chttp2_socket_pair_with_grpc_trace_cancel_after_invoke_unsecure_test",
  7814. "platforms": [
  7815. "linux",
  7816. "mac",
  7817. "posix",
  7818. "windows"
  7819. ]
  7820. },
  7821. {
  7822. "flaky": false,
  7823. "language": "c",
  7824. "name": "chttp2_socket_pair_with_grpc_trace_cancel_before_invoke_unsecure_test",
  7825. "platforms": [
  7826. "linux",
  7827. "mac",
  7828. "posix",
  7829. "windows"
  7830. ]
  7831. },
  7832. {
  7833. "flaky": false,
  7834. "language": "c",
  7835. "name": "chttp2_socket_pair_with_grpc_trace_cancel_in_a_vacuum_unsecure_test",
  7836. "platforms": [
  7837. "linux",
  7838. "mac",
  7839. "posix",
  7840. "windows"
  7841. ]
  7842. },
  7843. {
  7844. "flaky": false,
  7845. "language": "c",
  7846. "name": "chttp2_socket_pair_with_grpc_trace_census_simple_request_unsecure_test",
  7847. "platforms": [
  7848. "linux",
  7849. "mac",
  7850. "posix",
  7851. "windows"
  7852. ]
  7853. },
  7854. {
  7855. "flaky": false,
  7856. "language": "c",
  7857. "name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_inflight_calls_unsecure_test",
  7858. "platforms": [
  7859. "linux",
  7860. "mac",
  7861. "posix",
  7862. "windows"
  7863. ]
  7864. },
  7865. {
  7866. "flaky": false,
  7867. "language": "c",
  7868. "name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_tags_unsecure_test",
  7869. "platforms": [
  7870. "linux",
  7871. "mac",
  7872. "posix",
  7873. "windows"
  7874. ]
  7875. },
  7876. {
  7877. "flaky": false,
  7878. "language": "c",
  7879. "name": "chttp2_socket_pair_with_grpc_trace_empty_batch_unsecure_test",
  7880. "platforms": [
  7881. "linux",
  7882. "mac",
  7883. "posix",
  7884. "windows"
  7885. ]
  7886. },
  7887. {
  7888. "flaky": false,
  7889. "language": "c",
  7890. "name": "chttp2_socket_pair_with_grpc_trace_graceful_server_shutdown_unsecure_test",
  7891. "platforms": [
  7892. "linux",
  7893. "mac",
  7894. "posix",
  7895. "windows"
  7896. ]
  7897. },
  7898. {
  7899. "flaky": false,
  7900. "language": "c",
  7901. "name": "chttp2_socket_pair_with_grpc_trace_invoke_large_request_unsecure_test",
  7902. "platforms": [
  7903. "linux",
  7904. "mac",
  7905. "posix",
  7906. "windows"
  7907. ]
  7908. },
  7909. {
  7910. "flaky": false,
  7911. "language": "c",
  7912. "name": "chttp2_socket_pair_with_grpc_trace_max_concurrent_streams_unsecure_test",
  7913. "platforms": [
  7914. "linux",
  7915. "mac",
  7916. "posix",
  7917. "windows"
  7918. ]
  7919. },
  7920. {
  7921. "flaky": false,
  7922. "language": "c",
  7923. "name": "chttp2_socket_pair_with_grpc_trace_max_message_length_unsecure_test",
  7924. "platforms": [
  7925. "linux",
  7926. "mac",
  7927. "posix",
  7928. "windows"
  7929. ]
  7930. },
  7931. {
  7932. "flaky": false,
  7933. "language": "c",
  7934. "name": "chttp2_socket_pair_with_grpc_trace_no_op_unsecure_test",
  7935. "platforms": [
  7936. "linux",
  7937. "mac",
  7938. "posix",
  7939. "windows"
  7940. ]
  7941. },
  7942. {
  7943. "flaky": false,
  7944. "language": "c",
  7945. "name": "chttp2_socket_pair_with_grpc_trace_ping_pong_streaming_unsecure_test",
  7946. "platforms": [
  7947. "linux",
  7948. "mac",
  7949. "posix",
  7950. "windows"
  7951. ]
  7952. },
  7953. {
  7954. "flaky": false,
  7955. "language": "c",
  7956. "name": "chttp2_socket_pair_with_grpc_trace_registered_call_unsecure_test",
  7957. "platforms": [
  7958. "linux",
  7959. "mac",
  7960. "posix",
  7961. "windows"
  7962. ]
  7963. },
  7964. {
  7965. "flaky": false,
  7966. "language": "c",
  7967. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_binary_metadata_and_payload_unsecure_test",
  7968. "platforms": [
  7969. "linux",
  7970. "mac",
  7971. "posix",
  7972. "windows"
  7973. ]
  7974. },
  7975. {
  7976. "flaky": false,
  7977. "language": "c",
  7978. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_metadata_and_payload_unsecure_test",
  7979. "platforms": [
  7980. "linux",
  7981. "mac",
  7982. "posix",
  7983. "windows"
  7984. ]
  7985. },
  7986. {
  7987. "flaky": false,
  7988. "language": "c",
  7989. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_payload_unsecure_test",
  7990. "platforms": [
  7991. "linux",
  7992. "mac",
  7993. "posix",
  7994. "windows"
  7995. ]
  7996. },
  7997. {
  7998. "flaky": false,
  7999. "language": "c",
  8000. "name": "chttp2_socket_pair_with_grpc_trace_request_response_with_trailing_metadata_and_payload_unsecure_test",
  8001. "platforms": [
  8002. "linux",
  8003. "mac",
  8004. "posix",
  8005. "windows"
  8006. ]
  8007. },
  8008. {
  8009. "flaky": false,
  8010. "language": "c",
  8011. "name": "chttp2_socket_pair_with_grpc_trace_request_with_compressed_payload_unsecure_test",
  8012. "platforms": [
  8013. "linux",
  8014. "mac",
  8015. "posix",
  8016. "windows"
  8017. ]
  8018. },
  8019. {
  8020. "flaky": false,
  8021. "language": "c",
  8022. "name": "chttp2_socket_pair_with_grpc_trace_request_with_flags_unsecure_test",
  8023. "platforms": [
  8024. "linux",
  8025. "mac",
  8026. "posix",
  8027. "windows"
  8028. ]
  8029. },
  8030. {
  8031. "flaky": false,
  8032. "language": "c",
  8033. "name": "chttp2_socket_pair_with_grpc_trace_request_with_large_metadata_unsecure_test",
  8034. "platforms": [
  8035. "linux",
  8036. "mac",
  8037. "posix",
  8038. "windows"
  8039. ]
  8040. },
  8041. {
  8042. "flaky": false,
  8043. "language": "c",
  8044. "name": "chttp2_socket_pair_with_grpc_trace_request_with_payload_unsecure_test",
  8045. "platforms": [
  8046. "linux",
  8047. "mac",
  8048. "posix",
  8049. "windows"
  8050. ]
  8051. },
  8052. {
  8053. "flaky": false,
  8054. "language": "c",
  8055. "name": "chttp2_socket_pair_with_grpc_trace_server_finishes_request_unsecure_test",
  8056. "platforms": [
  8057. "linux",
  8058. "mac",
  8059. "posix",
  8060. "windows"
  8061. ]
  8062. },
  8063. {
  8064. "flaky": false,
  8065. "language": "c",
  8066. "name": "chttp2_socket_pair_with_grpc_trace_simple_request_unsecure_test",
  8067. "platforms": [
  8068. "linux",
  8069. "mac",
  8070. "posix",
  8071. "windows"
  8072. ]
  8073. },
  8074. {
  8075. "flaky": false,
  8076. "language": "c",
  8077. "name": "chttp2_socket_pair_with_grpc_trace_simple_request_with_high_initial_sequence_number_unsecure_test",
  8078. "platforms": [
  8079. "linux",
  8080. "mac",
  8081. "posix",
  8082. "windows"
  8083. ]
  8084. },
  8085. {
  8086. "flaky": false,
  8087. "language": "c",
  8088. "name": "connection_prefix_bad_client_test",
  8089. "platforms": [
  8090. "posix",
  8091. "windows"
  8092. ]
  8093. },
  8094. {
  8095. "flaky": false,
  8096. "language": "c",
  8097. "name": "initial_settings_frame_bad_client_test",
  8098. "platforms": [
  8099. "posix",
  8100. "windows"
  8101. ]
  8102. }
  8103. ]