tests.json 130 KB

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